NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppJfexportBillCreat...

67 lines
2.1 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>
/// AlipayEbppJfexportBillCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportBillCreateModel : AopObject
{
/// <summary>
/// 支付金额,单位为RMB 元。
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 户号
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型英文名称 固定传JF表示缴费
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 缓存的账单的key每次查询机构账单时返回在创建时需要透传回支付宝这边
/// </summary>
[XmlElement("cache_key")]
public string CacheKey { get; set; }
/// <summary>
/// 出账机构英文简称
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 拓展字段json格式的key-value串可以放返佣标识等信息
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 外部商户的业务流水号,需要保证唯一性和幂等性;并且,需要确保同一个外部商户的业务流水号只能使用同一个开放平台账户进行创建。
/// </summary>
[XmlElement("merchant_order_no")]
public string MerchantOrderNo { get; set; }
/// <summary>
/// 子业务类型英文名称 ELECTRIC-电费WATER-水费GAS-燃气费
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 选中的机构账单列表中单笔账单的uniq_id标识创建哪一笔账单
/// </summary>
[XmlElement("unique_id")]
public string UniqueId { get; set; }
}
}