Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertCommissionAdvertQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

26 lines
846 B
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiAdvertCommissionAdvertQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertCommissionAdvertQueryModel : AopObject
{
/// <summary>
/// 查询主键列表 identify_type=advert所有值都必须是推广ID identify_type=mission所有值都必须是分佣任务ID identify_type=voucher所有值都必须是券ID
/// </summary>
[JsonProperty("identifies")]
public List<string> Identifies { get; set; }
/// <summary>
/// 查询主键类型(枚举值key对应于请求对象中查询主键列表的key) advert-推广 mission-分佣任务 voucher-券
/// </summary>
[JsonProperty("identify_type")]
public string IdentifyType { get; set; }
}
}