Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEbppInvoiceSycnModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

32 lines
983 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEbppInvoiceSycnModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInvoiceSycnModel : AopObject
{
/// <summary>
/// 同步发票信息模型
/// </summary>
[JsonProperty("invoice_info")]
public List<InvoiceModelContent> InvoiceInfo { get; set; }
/// <summary>
/// 商户的品牌名称简称,该字段需要接入前向发票管家申请, m_short_name+sub_m_short_name具有唯一约束 如肯德基KFC
/// </summary>
[JsonProperty("m_short_name")]
public string MShortName { get; set; }
/// <summary>
/// 支付宝为商户分配的商户门店简称,该字段需要接入前在发票管家申请 如:肯德基-杭州西湖区文一西路店KFC-HZ-XH001
/// </summary>
[JsonProperty("sub_m_short_name")]
public string SubMShortName { get; set; }
}
}