using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity.Local { /// /// 读取卡片信息,取得人员相关信息 /// public class ReadCardRequest { /// /// 卡号 /// public string p_kh { get; set; } /// /// 险种标志 /// public string p_xzbz { get; set; } /// /// 二维码 /// public string p_ewm { get; set; } /// /// 医疗统筹类别 /// public string p_yltclb { get; set; } /// /// 普通门诊刷卡标志 /// public string p_ptmzskbz { get; set; } /// /// 日期 /// public string p_rq { get; set; } /// /// 电子医保凭证业务码 /// public string p_dzpzywm { get; set; } /// /// 是否联网医院互 /// public string p_sfhlwyy { get; set; } } public class ReadCardResponse { /// /// 执行代码 /// public string resultcode { get; set; } /// /// 个人编号 /// public string grbh { get; set; } /// /// 卡号 /// public string kh { get; set; } /// /// 人群类别 /// public string rqlb { get; set; } /// /// 门诊大病备注 /// public string mzdbbz { get; set; } /// /// 疾病编码 /// public string mzdbjbs { get; set; } /// /// 社保机构编号 /// public string sbjgbh { get; set; } /// /// 身份证号码 /// public string sfzhm { get; set; } /// /// 姓名 /// public string xm { get; set; } /// /// 账户余额 /// public decimal zhye { get; set; } /// /// 灰名单标志 /// public string zfbz { get; set; } /// /// 灰名单原因 /// public string zfsm { get; set; } /// /// 性别 /// public string xb { get; set; } /// /// 转出医院名称 /// public string zcyymc { get; set; } /// /// 异地标志 /// public string ydbz { get; set; } /// /// 转出出院日期 /// public DateTime zccyrq { get; set; } /// /// 补充人员类别 /// public string bcrlylb { get; set; } /// /// 出生日期 /// public DateTime csrq { get; set; } /// /// 单位名称 /// public string dwmc { get; set; } /// /// 门诊定点标志 /// public string mzddbz { get; set; } /// /// 门诊定点说明 /// public string mzddsm { get; set; } /// /// 优抚对象标志 /// public string yfdxbz { get; set; } /// /// 优抚对象人员类别 /// public string yfdxlb { get; set; } /// /// 医疗人员类别 /// public string ylrylb { get; set; } /// /// 医疗人员类别代码 /// public string ylrylbcode { get; set; } /// /// 救助人员类别 /// public string jzrylb { get; set; } /// /// 贫困人口标志 /// public string pkrkbz { get; set; } /// /// 单位性质名称 /// public string dwxzmc { get; set; } /// /// 有无15(医保参数控制)天内的住院记录 /// public string zhzybz { get; set; } /// /// 15(医保参数控制)天内的住院记录说明 /// public string zhzysm { get; set; } /// /// 行政区划 /// public string xzqh { get; set; } /// /// 社保卡异地标志 /// public string sbkydbz { get; set; } /// /// 卡芯片账号 /// public string kyhzh { get; set; } /// /// 令牌 /// public string ectoken { get; set; } /// /// 工伤检查信息 /// public string gsjcxx { get; set; } /// /// 家庭共济账户余额 /// public decimal gjzhye { get; set; } /// /// 识别码 /// public string sbm { get; set; } /// /// 参保地市编号 /// public string cbdsbh { get; set; } /// /// 参保机构名称 /// public string cbjgmc { get; set; } } }