NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceMedicalInstca...

151 lines
4.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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