using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// VoucherVO Data Structure. /// [Serializable] public class VoucherVO : AopObject { /// /// 券生效时间 /// [XmlElement("gmt_active")] public string GmtActive { get; set; } /// /// 券失效时间 /// [XmlElement("gmt_expired")] public string GmtExpired { get; set; } /// /// 券名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 券门槛金额,单位分 /// [XmlElement("threshold_amount")] public string ThresholdAmount { get; set; } /// /// 券面额,单位分 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 券实例id /// [XmlElement("voucher_id")] public string VoucherId { get; set; } /// /// 券模板id /// [XmlElement("voucher_template_id")] public string VoucherTemplateId { get; set; } } }