using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PrizeInfo Data Structure. /// [Serializable] public class PrizeInfo : AopObject { /// /// 奖品使用地址 /// [XmlElement("activity_url")] public string ActivityUrl { get; set; } /// /// 脱敏后的支付宝登陆账号 /// [XmlElement("alipay_logon_id")] public string AlipayLogonId { get; set; } /// /// 奖品金额,单位为元 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 奖品描述信息 /// [XmlElement("desc")] public string Desc { get; set; } /// /// 奖品发放时间,格式为yyyy-MM-dd HH:mm:ss;有多个奖品时按发放时间倒序排列 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 奖品过期时间,格式为yyyy-MM-dd HH:mm:ss /// [XmlElement("gmt_expired")] public string GmtExpired { get; set; } /// /// 奖品ID /// [XmlElement("id")] public string Id { get; set; } /// /// 奖品名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 奖品状态,可枚举,分别为“可用”(ENABLED)、“不可用”(DISABLED)、“未激活”(UNACTIVATED) /// [XmlElement("status")] public string Status { get; set; } } }