| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel;
- using System.Data.Linq;
- using System.Data.Linq.Mapping;
- using System.Collections.Generic;
- /// <summary>
- ///
- /// </summary>
- namespace PTMedicalInsurance.Entity.Base.Settlement.Record
- {
- /// <summary>
- /// 4.2.6.3【2502】转院备案撤销
- /// 通过此交易进行转院备案的撤销。
- /// </summary>
- class CancelHospitalTransferRecordInput :EntityBase
- {
- /// <summary>
- /// 待遇申报明细流水号(必填)
- /// </summary>
- [Column(Name = "trt_dcla_detl_sn", DbType = "VarChar(30)", CanBeNull = false)]
- [StringLength(30)]
- [DisplayName("待遇申报明细流水号")]
- public string trt_dcla_detl_sn { get; set; }
- /// <summary>
- /// 人员编号(必填)
- /// </summary>
- [Column(Name = "psn_no", DbType = "VarChar(30)", CanBeNull = false)]
- [StringLength(30)]
- [DisplayName("人员编号")]
- public string psn_no { get; set; }
- /// <summary>
- /// 备注(填写撤销原因)
- /// </summary>
- [Column(Name = "memo", DbType = "VarChar(500)", CanBeNull = true)]
- [StringLength(500)]
- [DisplayName("备注")]
- public string memo { get; set; }
- }
- }
|