using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// CreationPlanData Data Structure. /// [Serializable] public class CreationPlanData : AopObject { /// /// 定向的设备sn列表 /// [XmlArray("device_sn_list")] [XmlArrayItem("string")] public List DeviceSnList { get; set; } /// /// 投放结束时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 额外信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 修改时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 投放计划id /// [XmlElement("id")] public long Id { get; set; } /// /// 投放的物料地址 /// [XmlElement("material_url")] public string MaterialUrl { get; set; } /// /// 投放计划名称 /// [XmlElement("plan_name")] public string PlanName { get; set; } /// /// 投放开始时间 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 投放计划状态 /// [XmlElement("status")] public string Status { get; set; } } }