忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,32 +0,0 @@
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; }
}
}