using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity { /// /// 【2301】住院费用明细上传 /// 交易说明:通过此交易进行住院费用明细上传、明细退单。 /// public class InpatientExpenseDetailUploadInput { /// /// 费用明细流水号 /// 单次就诊内唯一 /// public string feedetl_sn { get; set; } /// /// 原费用流水号 /// 退单时传入被退单的费用明细流水号 /// public string init_feedetl_sn { get; set; } /// /// 就诊 ID /// public string mdtrt_id { get; set; } /// /// 医嘱号 /// public string drord_no { get; set; } /// /// 人员编号 /// public string psn_no { get; set; } /// /// 医疗类别 /// public string med_type { get; set; } /// /// 费用发生时间 /// public DateTime fee_ocur_time { get; set; } /// /// 医疗目录编码 /// public string med_list_codg { get; set; } /// /// 医药机构目录编码 /// public string medins_list_codg { get; set; } /// /// 明细项目费用总额 /// public decimal det_item_fee_sumamt { get; set; } /// /// 数量 /// 退单时数量填写负数 /// public decimal cnt { get; set; } /// /// 单价 /// public decimal pric { get; set; } /// /// 开单科室编码 /// public string bilg_dept_codg { get; set; } /// /// 开单科室名称 /// public string bilg_dept_name { get; set; } /// /// 开单医生编码 /// public string bilg_dr_codg { get; set; } /// /// 开单医师姓名 /// public string bilg_dr_name { get; set; } /// /// 受单科室编码 /// public string acord_dept_codg { get; set; } /// /// 受单科室名称 /// public string acord_dept_name { get; set; } /// /// 受单医生编码 /// public string orders_dr_codg { get; set; } /// /// 受单医生姓名 /// public string orders_dr_name { get; set; } /// /// 医院审批标志 /// public string hosp_appr_flag { get; set; } /// /// 中药使用方式 /// public string tcmdrug_used_way { get; set; } /// /// 外检标志 /// public string etip_flag { get; set; } /// /// 外检医院编码 /// public string etip_hosp_code { get; set; } /// /// 出院带药标志 /// public string dscg_tkdrug_flag { get; set; } /// /// 生育费用标志 /// public string matn_fee_flag { get; set; } /// /// 备注 /// public string memo { get; set; } /// /// 扩展参数 /// 用于扩展出更多的参数,格式为 JSON 格式的字符串 /// public string exp_content { get; set; } } /// /// 【2301】住院费用明细上传 /// 交易说明:通过此交易进行住院费用明细上传、明细退单。 /// public class InpatientExpenseDetailUploadOutput { /// /// 费用明细流水号 /// public string feedetl_sn { get; set; } /// /// 明细项目费用总额 /// public decimal det_item_fee_sumamt { get; set; } /// /// 数量 /// public decimal cnt { get; set; } /// /// 单价 /// public decimal pric { get; set; } /// /// 定价上限金额 /// public decimal pric_uplmt_amt { get; set; } /// /// 自付比例 /// public decimal selfpay_prop { get; set; } /// /// 全自费金额 /// public decimal fulamt_ownpay_amt { get; set; } /// /// 超限价金额 /// public decimal overlmt_amt { get; set; } /// /// 先行自付金额 /// public decimal preselfpay_amt { get; set; } /// /// 符合政策范围金额 /// public decimal inscp_scp_amt { get; set; } /// /// 收费项目等级 /// public string chrgitm_lv { get; set; } /// /// 医疗收费项目类别 /// public string med_chrgitm_type { get; set; } /// /// 基本药物标志 /// public string bas_medn_flag { get; set; } /// /// 医保谈判药品标志 /// public string hi_nego_drug_flag { get; set; } /// /// 儿童用药标志 /// public string chld_medc_flag { get; set; } /// /// 目录特项标志 /// public string list_sp_item_flag { get; set; } /// /// 限制使用标志 /// public string lmt_used_flag { get; set; } /// /// 直报标志 /// public string drt_reim_flag { get; set; } /// /// 备注 /// public string memo { get; set; } } }