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

38 lines
1.1 KiB
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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiAdvertCommissionCascademissionCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertCommissionCascademissionCreateModel : AopObject
{
/// <summary>
/// 子任务的分佣配置
/// </summary>
[JsonProperty("cascade_mission_conf")]
public List<CascadeMissionConfModel> CascadeMissionConf { get; set; }
/// <summary>
/// 根据identify_type指定的值 misison时为需要设置子任务的分佣任务ID voucher时为需要券ID
/// </summary>
[JsonProperty("identify")]
public string Identify { get; set; }
/// <summary>
/// 主键类型 mission已经领取的任务需要在该任务下发布子任务的ID voucher任务对应的券ID
/// </summary>
[JsonProperty("identify_type")]
public string IdentifyType { get; set; }
/// <summary>
/// 名称
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
}
}