| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel;
- using System.Data.Linq;
- using System.Data.Linq.Mapping;
- using System.Collections.Generic;
- namespace PTMedicalInsurance.Entity.Base.Settlement.Record
- {
- class CancelChronicDiseaseRecordLocalInput : EntityBase
- {
- /// <summary>
- /// 人员编号
- /// </summary>
- [Column(Name = "PersonnelNo", DbType = "VarChar(50)", CanBeNull = false)]
- [StringLength(50)]
- [DisplayName("人员编号")]
- public string psn_no { get; set; }
- /// <summary>
- /// 待遇申报明细流水号
- /// </summary>
- [Column(Name = "TreatDclaDetailSn", DbType = "VarChar(30)", CanBeNull = true)]
- [StringLength(30)]
- [DisplayName("待遇申报明细流水号")]
- public string trt_dcla_detl_sn { get; set; }
- /// <summary>
- /// 门慢门特病种目录代码
- /// </summary>
- [Column(Name = "OpSpDiseCode", DbType = "VarChar(30)", CanBeNull = true)]
- [StringLength(30)]
- [DisplayName("门慢门特病种目录代码")]
- public string opsp_dise_code { get; set; }
- /// <summary>
- /// 开始日期
- /// </summary>
- [Column(Name = "Begndate", DbType = "Date", CanBeNull = false)]
- [DisplayName("开始日期")]
- public DateTime? begndate { get; set; }
- /// <summary>
- /// 备注(填写撤销原因)
- /// </summary>
- [Column(Name = "Memo", DbType = "VarChar(500)", CanBeNull = true)]
- [StringLength(500)]
- [DisplayName("备注")]
- public string memo { get; set; }
- }
- class CancelChronicDiseaseRecordLocalOutput: EntityBase
- {
- }
- }
|