忽略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>
/// KoubeiAdvertCommissionRoleQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertCommissionRoleQueryModel : AopObject
{
/// <summary>
/// 角色code码如果不提供该字段则会遍历所有角色并返回user_identify是否拥有 MISSION_PROMO任务推广角色 MISSION_PUBLISH任务发布角色
/// </summary>
[JsonProperty("role_code")]
public string RoleCode { get; set; }
/// <summary>
/// 用户身份主键 user_identify_type=user_id -值必须是支付宝账户ID
/// </summary>
[JsonProperty("user_identify")]
public string UserIdentify { get; set; }
/// <summary>
/// 用户身份主键类型 user_id - 支付宝账户ID
/// </summary>
[JsonProperty("user_identify_type")]
public string UserIdentifyType { get; set; }
}
}