using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity { /// /// 【2204】门诊费用明细信息上传-输入参数 /// public class OutpatientFeeDetailUploadInput { /// /// 费用明细流水号 /// public string feedetl_sn { get; set; } /// /// 就诊ID /// public string mdtrt_id { get; set; } /// /// 人员编号 /// public string psn_no { get; set; } /// /// 收费批次号 /// public string chrg_bchno { get; set; } /// /// 病种编码 /// public string dise_codg { get; set; } /// /// 处方号 /// public string rxno { get; set; } /// /// 外购处方标志 /// public string rx_circ_flag { 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 sin_dos_dscr { get; set; } /// /// 使用频次描述 /// public string used_frqu_dscr { get; set; } /// /// 周期天数 /// public decimal prd_days { get; set; } /// /// 用药途径描述 /// public string medc_way_dscr { 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 exp_content { get; set; } } /// /// 【2204】门诊费用明细信息上传-输出参数 /// public class OutpatientFeeDetailUploadOutput { /// /// 费用明细流水号 /// 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; } } }