NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppJfexportMerchantb...

31 lines
867 B
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>
/// AlipayEbppJfexportMerchantbillQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportMerchantbillQueryModel : AopObject
{
/// <summary>
/// 业务类型英文名称 固定传JF表示缴费
/// </summary>
[XmlElement("biz_type")]
public string BizType { 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; }
}
}