using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity.Local { // 保存参保职工的住院登记信息,并上传到社保中心 public class SaveZydjRequest { /// /// 病历号 /// public string p_blh { get; set; } /// /// 社会保障号码 /// public string p_grbh { get; set; } /// /// 卡号 /// public string p_kh { get; set; } /// /// 姓名 /// public string p_xm { get; set; } /// /// 性别 /// public string p_xb { get; set; } /// /// 医疗统筹类别 /// public string p_yltclb { get; set; } /// /// 科室编码 /// public string p_ksbm { get; set; } /// /// 住院日期 /// public DateTime p_zyrq { get; set; } /// /// 确诊医师 /// public string p_qzys { get; set; } /// /// 险种标志 /// public string p_xzbz { get; set; } /// /// 外地就医类别 /// public string p_jylb { get; set; } /// /// 就医医院编码 /// public string p_jyyybm { get; set; } /// /// 住院方式 /// public string p_zyfs { get; set; } /// /// 医保疾病编码 /// public string p_jbbm { get; set; } /// /// 转出医疗统筹登记号 /// public string p_yyltcdjh { get; set; } /// /// 参保地市编号 /// public string p_cbdsbh { get; set; } /// /// 参保机构名称 /// public string p_cbjgmc { get; set; } /// /// 医疗统筹类别明细 /// public string p_yltclbmx { get; set; } /// /// 病情说明 /// public string p_bqsm { get; set; } /// /// 床位 /// public string p_cw { get; set; } /// /// 房间 /// public string p_fj { get; set; } /// /// 门诊科室 /// public string p_mzks { get; set; } /// /// 人群类别 /// public string p_rqlb { get; set; } /// /// 预产期(计生手术时间) /// public DateTime p_ycq { get; set; } /// /// 怀孕时间 /// public DateTime p_hysj { get; set; } /// /// 分娩或手术时间 /// public DateTime p_yecssj { get; set; } /// /// 生育胎次 /// public string p_sytc { get; set; } /// /// 胎儿个数 /// public string p_tegs { get; set; } /// /// 联系电话 /// public string p_lxdh { get; set; } /// /// 生育并发症 /// public string p_sybfz { get; set; } /// /// 补充项目信息 /// public string p_bcxm_ds { get; set; } /// /// 工伤住院方式 /// public string p_gszyfs { get; set; } /// /// 医疗住院方式 /// public string p_ylzyfs { get; set; } /// /// 识别码 /// public string p_sbm { get; set; } /// /// 二维码 /// public string p_ewm { get; set; } /// /// 工伤认定书编号 /// public string p_rdsbh { get; set; } /// /// 长期护理标志 /// public string p_cqhlbz { get; set; } /// /// 承诺无第三方 /// public string p_cnwdsf { get; set; } /// /// 收费认证方式 /// public string p_sfrzfs { get; set; } /// /// 外伤标志 /// public string p_wsbz { get; set; } /// /// 涉及第三方标志 /// public string p_sjdsfbz { get; set; } /// /// 住院类型 /// public string p_zylx { get; set; } } public class SaveZydjResponse { /// /// 执行代码 /// public string resultcode { get; set; } /// /// 入院诊断 /// public string ryzd { get; set; } /// /// 医保审批意见 /// public string bz { get; set; } /// /// 住院流水号 /// public string zylsh { get; set; } /// /// 确认标志 /// public string qrbz { get; set; } } }