NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInvoiceSycnModel.cs

33 lines
1.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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEbppInvoiceSycnModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceSycnModel : AopObject
{
/// <summary>
/// 同步发票信息模型
/// </summary>
[XmlArray("invoice_info")]
[XmlArrayItem("invoice_model_content")]
public List<InvoiceModelContent> InvoiceInfo { get; set; }
/// <summary>
/// 商户的品牌名称简称,该字段需要接入前向发票管家申请, m_short_name+sub_m_short_name具有唯一约束 如肯德基KFC
/// </summary>
[XmlElement("m_short_name")]
public string MShortName { get; set; }
/// <summary>
/// 支付宝为商户分配的商户门店简称,该字段需要接入前在发票管家申请 如:肯德基-杭州西湖区文一西路店KFC-HZ-XH001
/// </summary>
[XmlElement("sub_m_short_name")]
public string SubMShortName { get; set; }
}
}