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