CancelPersonFixedPointRecord.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. namespace PTMedicalInsurance.Entity.Base.Settlement.Record
  8. {
  9. /// <summary>
  10. /// 4.2.6.7【2506】人员定点备案撤销
  11. /// 通过此交易撤销医保局还未审核的人员定点备案信息
  12. /// </summary>
  13. class CancelPersonFixedPointRecord
  14. {
  15. /// <summary>
  16. /// 待遇申报明细流水号
  17. /// </summary>
  18. [Column(Name = "TreatDclaDetailSn", DbType = "VarChar(30)", CanBeNull = true)]
  19. [StringLength(30)]
  20. [DisplayName("待遇申报明细流水号")]
  21. public string trt_dcla_detl_sn { get; set; }
  22. /// <summary>
  23. /// 人员编号
  24. /// </summary>
  25. [Column(Name = "PersonnelNo", DbType = "VarChar(30)", CanBeNull = false)]
  26. [StringLength(30)]
  27. [DisplayName("人员编号")]
  28. public string psn_no { get; set; }
  29. /// <summary>
  30. /// 备注(填写撤销原因)
  31. /// </summary>
  32. [Column(Name = "Memo", DbType = "VarChar(500)", CanBeNull = true)]
  33. [StringLength(500)]
  34. [DisplayName("备注")]
  35. public string memo { get; set; }
  36. }
  37. }