CancelHospitalTransferRecord.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel;
  4. using System.Data.Linq;
  5. using System.Data.Linq.Mapping;
  6. using System.Collections.Generic;
  7. /// <summary>
  8. ///
  9. /// </summary>
  10. namespace PTMedicalInsurance.Entity.Base.Settlement.Record
  11. {
  12. /// <summary>
  13. /// 4.2.6.3【2502】转院备案撤销
  14. /// 通过此交易进行转院备案的撤销。
  15. /// </summary>
  16. class CancelHospitalTransferRecordInput :EntityBase
  17. {
  18. /// <summary>
  19. /// 待遇申报明细流水号(必填)
  20. /// </summary>
  21. [Column(Name = "trt_dcla_detl_sn", DbType = "VarChar(30)", CanBeNull = false)]
  22. [StringLength(30)]
  23. [DisplayName("待遇申报明细流水号")]
  24. public string trt_dcla_detl_sn { get; set; }
  25. /// <summary>
  26. /// 人员编号(必填)
  27. /// </summary>
  28. [Column(Name = "psn_no", DbType = "VarChar(30)", CanBeNull = false)]
  29. [StringLength(30)]
  30. [DisplayName("人员编号")]
  31. public string psn_no { get; set; }
  32. /// <summary>
  33. /// 备注(填写撤销原因)
  34. /// </summary>
  35. [Column(Name = "memo", DbType = "VarChar(500)", CanBeNull = true)]
  36. [StringLength(500)]
  37. [DisplayName("备注")]
  38. public string memo { get; set; }
  39. }
  40. }