using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity { /// /// 【2505】人员定点备案 /// 交易说明:通过此交易上传人员定点备案信息。 /// public class PersonFixedPointRecordInput:EntityBase { /// /// 人员编号 /// [Column("PersonnelNO")] public string psn_no { get; set; } /// /// 联系电话 /// [Column("Telephone")] public string tel { get; set; } /// /// 联系地址 /// [Column("Address")] public string addr { get; set; } /// /// 业务申请类型 /// [Column("BusinAppyType")] public string biz_appy_type { get; set; } /// /// 开始日期 /// [Column("BusinStartDate")] public string begndate { get; set; } /// /// 结束日期 /// [Column("BusinEndDate")] public string enddate { get; set; } /// /// 代办人姓名 /// [Column("AgnterName")] public string agnter_name { get; set; } /// /// 代办人证件类型 /// [Column("AgnterCertType")] public string agnter_cert_type { get; set; } /// /// 代办人证件号码 /// [Column("AgnterCertNo")] public string agnter_certno { get; set; } /// /// 代办人联系方式 /// [Column("AgnterTelephone")] public string agnter_tel { get; set; } /// /// 代办人联系地址 /// [Column("AgnterAddress")] public string agnter_addr { get; set; } /// /// 代办人关系 /// [Column("AgnterRelation")] public string agnter_rlts { get; set; } /// /// 定点排序号 /// [Column("FixedNo")] public string fix_srt_no { get; set; } /// /// 定点医药机构编号 /// [Column("BusinHospCode")] public string fixmedins_code { get; set; } /// /// 定点医药机构名称 /// [Column("BusinHospDesc")] public string fixmedins_name { get; set; } /// /// 备注 /// [Column("Memo")] public string memo { get; set; } /// /// 就医点类型 /// public string fix_local_type { get; set; } /// /// 主辅标志 /// public string fix_main_scd_flag { get; set; } } /// /// 【2505,90210】人员定点备案 /// 输出类 /// public class PersonFixedPointRecordOutput { /// /// 待遇申报明细流水号 /// public string trt_dcla_detl_sn { get; set; } } /// /// 【2505】人员定点备案 /// 输出类 /// public class PersonFixedPointAlterInput { /// /// 人员编号 /// [Column("PersonnelNO")] public string psn_no { get; set; } /// /// 开始日期 /// [Column("BusinStartDate")] public string begndate { get; set; } /// /// 结束日期 /// [Column("BusinEndDate")] public string enddate { get; set; } /// /// 定点事件类型 /// public string fix_evt_type { get; set; } /// /// 主辅标志 /// public string fix_main_scd_flag { get; set; } /// /// 就医点类型 /// public string fix_local_type { get; set; } /// /// 定点医药机构编号 /// [Column("BusinHospCode")] public string fixmedins_code { get; set; } /// /// 备注 /// [Column("Memo")] public string memo { get; set; } } }