忽略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,48 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserCharityForestSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCharityForestSendModel : AopObject
{
/// <summary>
/// 唯一单据号,用于发能量幂等控制
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 业务发生时间
/// </summary>
[JsonProperty("biz_time")]
public string BizTime { get; set; }
/// <summary>
/// 能量值最小1g最大100kg100,000不能有小数
/// </summary>
[JsonProperty("energy")]
public long Energy { get; set; }
/// <summary>
/// 能量气泡类型
/// </summary>
[JsonProperty("energy_type")]
public string EnergyType { get; set; }
/// <summary>
/// 业务来源
/// </summary>
[JsonProperty("source")]
public string Source { get; set; }
/// <summary>
/// 用户的支付宝账户ID
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}