using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Gdsi.Model { public class Api2301Result { 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 List result { get; set; } } public class Result { /// /// 基本药物标志 /// public string bas_medn_flag { get; set; } /// /// 医疗收费项目类别 /// public string med_chrgitm_type { get; set; } /// /// 明细项目费用总额 /// public string det_item_fee_sumamt { get; set; } /// /// 医保谈判药品标志 /// public string hi_nego_drug_flag { get; set; } /// /// 全自费金额 /// public string fulamt_ownpay_amt { get; set; } /// /// 数量 /// public string cnt { get; set; } /// /// 单价 /// public string pric { get; set; } /// /// 备注 /// public string memo { get; set; } /// /// 费用明细流水号 /// public string feedetl_sn { get; set; } /// /// 符合政策范围金额 /// public string inscp_scp_amt { get; set; } /// /// 直报标志 /// public string drt_reim_flag { get; set; } /// /// 超限价金额 /// public string overlmt_amt { get; set; } /// /// 目录特项标志 /// public string list_sp_item_flag { get; set; } /// /// 定价上限金额 /// public string pric_uplmt_amt { get; set; } /// /// 自付比例 /// public string selfpay_prop { get; set; } /// /// 儿童用药标志 /// public string chld_medc_flag { get; set; } /// /// 先行自付金额 /// public string preselfpay_amt { get; set; } /// /// 限制使用标志 /// public string lmt_used_flag { get; set; } /// /// 收费项目等级 /// public string chrgitm_lv { get; set; } } } }