CancelChronicDiseaseRecordLocal.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. class CancelChronicDiseaseRecordLocalInput : EntityBase
  10. {
  11. /// <summary>
  12. /// 人员编号
  13. /// </summary>
  14. [Column(Name = "PersonnelNo", DbType = "VarChar(50)", CanBeNull = false)]
  15. [StringLength(50)]
  16. [DisplayName("人员编号")]
  17. public string psn_no { get; set; }
  18. /// <summary>
  19. /// 待遇申报明细流水号
  20. /// </summary>
  21. [Column(Name = "TreatDclaDetailSn", DbType = "VarChar(30)", CanBeNull = true)]
  22. [StringLength(30)]
  23. [DisplayName("待遇申报明细流水号")]
  24. public string trt_dcla_detl_sn { get; set; }
  25. /// <summary>
  26. /// 门慢门特病种目录代码
  27. /// </summary>
  28. [Column(Name = "OpSpDiseCode", DbType = "VarChar(30)", CanBeNull = true)]
  29. [StringLength(30)]
  30. [DisplayName("门慢门特病种目录代码")]
  31. public string opsp_dise_code { get; set; }
  32. /// <summary>
  33. /// 开始日期
  34. /// </summary>
  35. [Column(Name = "Begndate", DbType = "Date", CanBeNull = false)]
  36. [DisplayName("开始日期")]
  37. public DateTime? begndate { get; set; }
  38. /// <summary>
  39. /// 备注(填写撤销原因)
  40. /// </summary>
  41. [Column(Name = "Memo", DbType = "VarChar(500)", CanBeNull = true)]
  42. [StringLength(500)]
  43. [DisplayName("备注")]
  44. public string memo { get; set; }
  45. }
  46. class CancelChronicDiseaseRecordLocalOutput: EntityBase
  47. {
  48. }
  49. }