using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// CampBaseDto Data Structure. /// [Serializable] public class CampBaseDto : AopObject { /// /// 活动工单列表 /// [XmlArray("activity_orders")] [XmlArrayItem("activity_order_d_t_o")] public List ActivityOrders { get; set; } /// /// 活动审核状态,AUDITING为审核中,REJECT为驳回,不返回为成功 /// [XmlElement("audit_status")] public string AuditStatus { get; set; } /// /// 是否自动续期,Y为是,N为否,为空表示否 /// [XmlElement("auto_delay_flag")] public string AutoDelayFlag { get; set; } /// /// 截至时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 活动id /// [XmlElement("id")] public string Id { get; set; } /// /// 活动名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 招商状态,GOING招商中,ENDED招商结束,OFFLINE下架 /// [XmlElement("plan_status")] public string PlanStatus { get; set; } /// /// 启动时间 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 活动状态,CREATED:草稿,ENABLED:生效,DISABLED:无效,STARTED:启动,CLOSED:停止,FINISHED:完成 /// [XmlElement("status")] public string Status { get; set; } /// /// 活动类型.DIRECT_SEND:直发奖,CONSUME_SEND:消费送 /// [XmlElement("type")] public string Type { get; set; } } }