using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PrizeValidPeriod Data Structure. /// [Serializable] public class PrizeValidPeriod : AopObject { /// /// 使用生效相对分钟数(相对时间) /// [XmlElement("active_min")] public long ActiveMin { get; set; } /// /// 废弃 /// [XmlElement("active_mins")] public string ActiveMins { get; set; } /// /// 使用开始时间(绝对时间 /// [XmlElement("active_time")] public string ActiveTime { get; set; } /// /// 使用截止相对分钟数(相对时间) /// [XmlElement("end_min")] public long EndMin { get; set; } /// /// 废弃 /// [XmlElement("end_mins")] public string EndMins { get; set; } /// /// 使用截止时间(绝对时间) /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// RELATIVE->相对时间 ABSOLUTE->绝对时间 /// [XmlElement("period_type")] public string PeriodType { get; set; } } }