忽略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,33 +0,0 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoCplifeBillBatchUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeBillBatchUploadModel : AopObject
{
/// <summary>
/// 每次上传物业费账单,都需要提供一个批次号。对于每一个合作伙伴,传递的每一个批次号都必须保证唯一性,同时对于批次号内的账单明细数据必须保证唯一性;
/// 建议格式为8位当天日期+流水号324位流水号可以接受数字或英文字符建议使用数字
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 账单应收条目明细集合同一小区内条目明细不允许重复一次接口请求最多支持1000条明细。
/// </summary>
[JsonProperty("bill_set")]
public List<CPBillSet> BillSet { get; set; }
/// <summary>
/// 支付宝社区小区统一编号,必须在物业账号名下存在。
/// </summary>
[JsonProperty("community_id")]
public string CommunityId { get; set; }
}
}