27 lines
735 B
C#
27 lines
735 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiAdvertCommissionMissionQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiAdvertCommissionMissionQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 主键ID
|
||
/// </summary>
|
||
[XmlArray("identify_list")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> IdentifyList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 主键类型 activity_id:运营活动ID voucher:商品ID mission:分佣任务ID
|
||
/// </summary>
|
||
[XmlElement("identify_type")]
|
||
public string IdentifyType { get; set; }
|
||
}
|
||
}
|