初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
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; }
}
}