忽略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,42 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserCharityRecordexistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCharityRecordexistQueryModel : AopObject
{
/// <summary>
/// 公益的业务类型(缺省是所有类型)
/// </summary>
[JsonProperty("biz_type")]
public long BizType { get; set; }
/// <summary>
/// 捐赠记录的结束时间(默认是查询当前自然年一年的记录)
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[JsonProperty("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 捐赠记录的开始时间(默认是查询当前自然年一年的记录)
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}