using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiMarketingCampaignRecruitApplyQueryResponse. /// public class KoubeiMarketingCampaignRecruitApplyQueryResponse : AopResponse { /// /// 活动开始购买时间 /// [XmlElement("bought_time")] public string BoughtTime { get; set; } /// /// 活动结束时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 招商报名数据总数 /// [XmlElement("item_count")] public string ItemCount { get; set; } /// /// 招商报名数据 /// [XmlArray("item_info")] [XmlArrayItem("recruit_item_apply_data")] public List ItemInfo { get; set; } /// /// 活动名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 预热开始时间 2016-12-12 10:10:10 /// [XmlElement("prehot_time")] public string PrehotTime { get; set; } } }