using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Gdsi.Model { public class Api2304Result { public string Msg { get; set; } = string.Empty; /// /// /// public Output output { get; set; } /// /// /// public string infcode { get; set; } /// /// /// public string warn_msg { get; set; } /// /// /// public string cainfo { get; set; } /// /// /// public string err_msg { get; set; } /// /// /// public string refmsg_time { get; set; } /// /// /// public string signtype { get; set; } /// /// /// public string respond_time { get; set; } /// /// /// public string inf_refmsgid { get; set; } public class Output { /// /// 结算信息 /// public Setlinfo setlinfo { get; set; } /// /// 结算基金分项信息 /// public List setldetail { get; set; } } public class Setlinfo { /// /// 结算时间 /// public string setl_time { get; set; } /// /// 公务员医疗补助资金支出 /// public string cvlserv_pay { get; set; } /// /// 伤残人员医疗保障基金支出 /// public string hifdm_pay { get; set; } /// /// 公务员标志 /// public string cvlserv_flag { get; set; } /// /// 医疗类别 /// public string med_type { get; set; } /// /// 字段扩展 /// public string exp_content { get; set; } /// /// 出生日期 /// public string brdy { get; set; } /// /// 民族 /// public string naty { get; set; } /// /// 个人现金支出 /// public string psn_cash_pay { get; set; } /// /// 证件号码 /// public string certno { get; set; } /// /// 居民大病保险资金支出 /// public string hifmi_pay { get; set; } /// /// 人员编号 /// public string psn_no { get; set; } /// /// 实际支付起付线 /// public string act_pay_dedc { get; set; } /// /// 就诊凭证类型 /// public string mdtrt_cert_type { get; set; } /// /// 余额 /// public string balc { get; set; } /// /// 医药机构结算ID /// public string medins_setl_id { get; set; } /// /// 人员证件类型 /// public string psn_cert_type { get; set; } /// /// 个人账户共济支付金额 /// public string acct_mulaid_pay { get; set; } /// /// 清算方式 /// public string clr_way { get; set; } /// /// 职工大额医疗费用补助基金支出 /// public string hifob_pay { get; set; } /// /// 其他支出 /// public string oth_pay { get; set; } /// /// /// public string ownpay_hosp_part { get; set; } /// /// 医疗费总额 /// public string medfee_sumamt { get; set; } /// /// 企业补充医疗保险基金支出 /// public string hifes_pay { get; set; } /// /// 性别 /// public string gend { get; set; } /// /// 就诊ID /// public string mdtrt_id { get; set; } /// /// 个人账户支出 /// public string acct_pay { get; set; } /// /// 基金支付总额 /// public string fund_pay_sumamt { get; set; } /// /// 全自费金额 /// public string fulamt_ownpay_amt { get; set; } /// /// 医院负担金额 /// public string hosp_part_amt { get; set; } /// /// 结算ID /// public string setl_id { get; set; } /// /// 符合政策范围金额 /// public string inscp_scp_amt { get; set; } /// /// 险种类型 /// public string insutype { get; set; } /// /// 医疗救助基金支出 /// public string maf_pay { get; set; } /// /// 人员姓名 /// public string psn_name { get; set; } /// /// 个人负担总金额 /// public string psn_part_amt { get; set; } /// /// 清算经办机构 /// public string clr_optins { get; set; } /// /// 基本医疗保险统筹基金支付比例 /// public string pool_prop_selfpay { get; set; } /// /// 人员类别 /// public string psn_type { get; set; } /// /// 基本医疗保险统筹基金支出 /// public string hifp_pay { get; set; } /// /// 超限价自费费用 /// public string overlmt_selfpay { get; set; } /// /// 先行自付金额 /// public string preselfpay_amt { get; set; } /// /// 年龄 /// public string age { get; set; } /// /// 清算类别 /// public string clr_type { get; set; } } public class Setldetail { /// /// 基金支付类型 /// public string fund_pay_type { get; set; } /// /// 基金支付金额 /// public string fund_payamt { get; set; } /// /// 结算过程信息 /// public string setl_proc_info { get; set; } /// /// 本次可支付限额金额 /// public string crt_payb_lmt_amt { get; set; } /// /// 符合政策范围金额 /// public string inscp_scp_amt { get; set; } /// /// 职工基本医疗统筹基金 /// public string fund_pay_type_name { get; set; } } } }