Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertCommissionRoleQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
932 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}