49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingCampaignRecruitShopQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiMarketingCampaignRecruitShopQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 活动id
|
|
/// </summary>
|
|
[XmlElement("camp_id")]
|
|
public string CampId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参与的商户Id
|
|
/// </summary>
|
|
[XmlElement("invitee")]
|
|
public string Invitee { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人id
|
|
/// </summary>
|
|
[XmlElement("operator_id")]
|
|
public string OperatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人类型
|
|
/// </summary>
|
|
[XmlElement("operator_type")]
|
|
public string OperatorType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 页码
|
|
/// </summary>
|
|
[XmlElement("page_num")]
|
|
public string PageNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 每页大小
|
|
/// </summary>
|
|
[XmlElement("page_size")]
|
|
public string PageSize { get; set; }
|
|
}
|
|
}
|