NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppJfexportBillQuery...

31 lines
793 B
C#
Raw 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>
/// AlipayEbppJfexportBillQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportBillQueryModel : AopObject
{
/// <summary>
/// 支付宝的业务订单号,具有唯一性和幂等性
/// </summary>
[XmlElement("bill_no")]
public string BillNo { get; set; }
/// <summary>
/// 业务类型英文名称
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 拓展字段json串(key-value对)
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
}
}