| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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
- {
- /// <summary>
- /// 4.2.6.7【2506】人员定点备案撤销
- /// 通过此交易撤销医保局还未审核的人员定点备案信息
- /// </summary>
- class CancelPersonFixedPointRecord
- {
- /// <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 = "PersonnelNo", 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; }
- }
- }
|