忽略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,30 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserBenefitStatusUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserBenefitStatusUpdateModel : AopObject
{
/// <summary>
/// 权益的ID
/// </summary>
[JsonProperty("benefit_id")]
public string BenefitId { get; set; }
/// <summary>
/// YES表示当前操作的是会员3.0权益NO表示当前操作的是改版之前的权益
/// </summary>
[JsonProperty("benefit_new_flag")]
public string BenefitNewFlag { get; set; }
/// <summary>
/// 1:上线, 0:下线, 2:失效; 上线状态所有人可见,不可编辑; 下线状态白名单可见,可以编辑; 失效状态所有人不可见,不可编辑。
/// </summary>
[JsonProperty("benefit_status")]
public string BenefitStatus { get; set; }
}
}