NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppIndustryOrderCrea...

103 lines
3.2 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>
/// AlipayEbppIndustryOrderCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppIndustryOrderCreateModel : AopObject
{
/// <summary>
/// 能力码是由支付宝分配的标识code
/// </summary>
[XmlElement("ability_code")]
public string AbilityCode { get; set; }
/// <summary>
/// 账单的账期例如201703表示2017年3月的账单。
/// </summary>
[XmlElement("bill_date")]
public string BillDate { get; set; }
/// <summary>
/// 业务账户号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 用户创建订单时涉及到的业务总金额。单位为RMB Yuan。取值范围为[0.01100000000.00),精确到小数点后两位。
/// </summary>
[XmlElement("biz_amount")]
public string BizAmount { get; set; }
/// <summary>
/// 机构简称例如杭州电力HZELECTRIC
/// </summary>
[XmlElement("biz_inst_short_name")]
public string BizInstShortName { get; set; }
/// <summary>
/// 业务类型缴费业务为JF还款业务HK公服行业为IND。
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 城市编码,国标码
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 扩展属性json串(key-value对)
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 滞纳金额,单位:元
/// </summary>
[XmlElement("fine_amount")]
public string FineAmount { get; set; }
/// <summary>
/// 身份标识号,例如身份证号、纳税人识别号等。
/// </summary>
[XmlElement("identity_no")]
public string IdentityNo { get; set; }
/// <summary>
/// 用户的手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// ISV流水号用于控制幂等须确保全局唯一
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 拥有该订单的用户姓名
/// </summary>
[XmlElement("owner_name")]
public string OwnerName { get; set; }
/// <summary>
/// 省份编码,国标码
/// </summary>
[XmlElement("province_code")]
public string ProvinceCode { get; set; }
/// <summary>
/// 子业务类型水费为WATER燃气费为GAS社保为SI公积金为HF社保+公积金为SIHF
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
}
}