using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InsMktCouponConfigDTO Data Structure. /// [Serializable] public class InsMktCouponConfigDTO : AopObject { /// /// 权益配置Id /// [XmlElement("coupon_conf_id")] public string CouponConfId { get; set; } /// /// 权益类型 /// [XmlElement("coupon_type")] public string CouponType { get; set; } /// /// 200元优惠券 /// [XmlElement("coupon_value")] public string CouponValue { get; set; } /// /// 核销结束时间 /// [XmlElement("use_end_time")] public string UseEndTime { get; set; } /// /// 核销使用规则 /// [XmlElement("use_rule")] public string UseRule { get; set; } /// /// 核销开始时间 /// [XmlElement("use_start_time")] public string UseStartTime { get; set; } } }