忽略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>
/// KbadvertCommissionLimit Data Structure.
/// </summary>
[Serializable]
public class KbadvertCommissionLimit : AopObject
{
/// <summary>
/// 推广者类型
/// </summary>
[JsonProperty("commission_user_type")]
public string CommissionUserType { get; set; }
/// <summary>
/// 层级
/// </summary>
[JsonProperty("level")]
public long Level { get; set; }
/// <summary>
/// 比例分佣的最大金额
/// </summary>
[JsonProperty("max_max_amount")]
public string MaxMaxAmount { get; set; }
/// <summary>
/// 固定金额上限
/// </summary>
[JsonProperty("max_quota_amount")]
public string MaxQuotaAmount { get; set; }
/// <summary>
/// 最小分佣比例
/// </summary>
[JsonProperty("min_commission_percentage")]
public string MinCommissionPercentage { get; set; }
/// <summary>
/// 最小固定金额
/// </summary>
[JsonProperty("min_quota_amount")]
public string MinQuotaAmount { get; set; }
}
}