using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// VoucherTemplateLiteInfo Data Structure. /// [Serializable] public class VoucherTemplateLiteInfo : AopObject { /// /// 模板激活时间。草稿状态的模板该项为空 /// [XmlElement("activate_time")] public string ActivateTime { get; set; } /// /// 模板创建时间。格式为:yyyy-MM-dd HH:mm:ss /// [XmlElement("create_time")] public string CreateTime { get; set; } /// /// 发放结束时间。格式为:yyyy-MM-dd HH:mm:ss /// [XmlElement("publish_end_time")] public string PublishEndTime { get; set; } /// /// 券模板发放开始时间。格式为:yyyy-MM-dd HH:mm:ss /// [XmlElement("publish_start_time")] public string PublishStartTime { get; set; } /// /// 模板状态,可枚举。分别为‘草稿’(I)、‘生效’(S)和‘过期’(E) /// [XmlElement("status")] public string Status { get; set; } /// /// 券模板ID /// [XmlElement("template_id")] public string TemplateId { get; set; } /// /// 券名称 /// [XmlElement("voucher_name")] public string VoucherName { get; set; } } }