using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity { /// /// 【2501】转院备案 /// 交易说明:通过此交易上传转院备案信息。 /// public class HospitalTransferRecordInput { /// /// 人员编号 /// public string psn_no { get; set; } /// /// 险种类型 /// public string insutype { get; set; } /// /// 联系电话 /// public string tel { get; set; } /// /// 联系地址 /// public string addr { get; set; } /// /// 参保机构医保区划 /// public string insu_optins { get; set; } /// /// 诊断代码 /// public string diag_code { get; set; } /// /// 诊断名称 /// public string diag_name { get; set; } /// /// 疾病病情描述 /// public string dise_cond_dscr { get; set; } /// /// 转往定点医药机构编号 /// public string reflin_medins_no { get; set; } /// /// 转往医院名称 /// public string reflin_medins_name { get; set; } /// /// 就医地行政区划 /// public string mdtrtarea_admvs { get; set; } /// /// 医院同意转院标志 /// public string hosp_agre_refl_flag { get; set; } /// /// 转院类型 /// public string refl_type { get; set; } /// /// 转院日期 /// public DateTime refl_date { get; set; } /// /// 转院原因 /// public string refl_rea { get; set; } /// /// 转院意见 /// public string refl_opnn { get; set; } /// /// 开始日期 /// public DateTime begndate { get; set; } /// /// 结束日期 /// public DateTime enddate { get; set; } /// /// 转诊使用标志 /// public string refl_used_flag { get; set; } } /// /// 【2501】转院备案 /// 输出类(无输出定义) /// public class HospitalTransferRecordOutput { /// /// 待遇申报明细流水号 /// public string trt_dcla_detl_sn { get; set; } } }