NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceApplystatu...

33 lines
1.4 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEbppInvoiceApplystatusQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceApplystatusQueryModel : AopObject
{
/// <summary>
/// 定义商户的一级简称,用于标识商户品牌,对应于商户入驻时填写的"商户品牌简称"。 如肯德基KFC
/// </summary>
[XmlElement("m_short_name")]
public string MShortName { get; set; }
/// <summary>
/// 待查询订单开票状态列表各订单号间通过英文逗号分割不限于支付宝体内交易订单号。如20200520110046966071,20200520110046966072,20200520110046966073
/// </summary>
[XmlArray("order_no_list")]
[XmlArrayItem("string")]
public List<string> OrderNoList { get; set; }
/// <summary>
/// 定义商户的二级简称,用于标识商户品牌下的分支机构,如门店,对应于商户入驻时填写的"商户门店简称"。 如:肯德基-杭州西湖区文一西路店KFC-HZ-19003 要求:"商户品牌简称+商户门店简称"作为确定商户及其下属机构的唯一标识,不可重复。
/// </summary>
[XmlElement("sub_m_short_name")]
public string SubMShortName { get; set; }
}
}