using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceMedicalInstcardCreateandpayModel Data Structure. /// [Serializable] public class AlipayCommerceMedicalInstcardCreateandpayModel : AopObject { /// /// 业务单据号 /// [XmlElement("bill_no")] public string BillNo { get; set; } /// /// 对交易或者商品的描述 /// [XmlElement("body")] public string Body { get; set; } /// /// 买家id /// [XmlElement("buyer_id")] public string BuyerId { get; set; } /// /// 业务扩展参数 /// [XmlElement("extend_params")] public string ExtendParams { get; set; } /// /// 外部下单时间。 格式为 yyyy-MM-dd HH:mm:ss /// [XmlElement("gmt_out_create")] public string GmtOutCreate { get; set; } /// /// 支付行业: 医院:HOSPITAL 药店:STORE /// [XmlElement("industry")] public string Industry { get; set; } /// /// 外部机构业务上是否允许这笔单订单使用医保支付 允许使用:T 不允许使用:F /// [XmlElement("is_insurance")] public string IsInsurance { get; set; } /// /// 医保卡机构内部ID号 /// [XmlElement("medical_card_id")] public string MedicalCardId { get; set; } /// /// 医保机构的编号 /// [XmlElement("medical_card_inst_id")] public string MedicalCardInstId { get; set; } /// /// 医疗机构名称 /// [XmlElement("org_name")] public string OrgName { get; set; } /// /// 医疗机构编码(医保局分配) /// [XmlElement("org_no")] public string OrgNo { get; set; } /// /// 商户订单号,64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复。 /// [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } /// /// 患者证件号码 /// [XmlElement("patient_card_no")] public string PatientCardNo { get; set; } /// /// 患者证件类型 /// [XmlElement("patient_card_type")] public string PatientCardType { get; set; } /// /// 患者手机号 /// [XmlElement("patient_mobile")] public string PatientMobile { get; set; } /// /// 患者姓名 患者姓名&患者证件和医保卡信息全部匹配才能使用医保,否则认为套保嫌疑不允许医保只能自费 /// [XmlElement("patient_name")] public string PatientName { get; set; } /// /// 如果需要医保支付这个字段必传。业务报文,报文中可包含多条业务数据 /// [XmlElement("request_content")] public string RequestContent { get; set; } /// /// 支付场景,取值:REGISTRATION(挂号) TREATMENT(诊间) HOSPITALIZATION(住院) COMMON(非医院类) /// [XmlElement("scene")] public string Scene { get; set; } /// /// 卖家支付宝用户ID,如果该值为空,则默认为商户签约账号对应的支付宝用户ID /// [XmlElement("seller_id")] public string SellerId { get; set; } /// /// 业务流水号 /// [XmlElement("serial_no")] public string SerialNo { get; set; } /// /// 订单标题 /// [XmlElement("subject")] public string Subject { get; set; } /// /// 该笔订单允许的最晚付款时间,逾期将关闭交易。取值范围:1m~15d。m-分钟,h-小时,d-天,1c-当天(1c-当天的情况下,无论交易何时创建,都在0点关闭)。 该参数数值不接受小数点, 如 1.5h,可转换为 90m /// [XmlElement("timeout_express")] public string TimeoutExpress { get; set; } /// /// 订单总金额,单位为元,不能小于0,精确到小数点后2位。 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } } }