using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ReduceToDiscountDstCampPrizeModel Data Structure. /// [Serializable] public class ReduceToDiscountDstCampPrizeModel : AopObject { /// /// 折扣预算ID /// [XmlElement("budget_id")] public string BudgetId { get; set; } /// /// 奖品id /// [XmlElement("id")] public string Id { get; set; } /// /// 单次优惠上限(元) /// [XmlElement("max_discount_amt")] public string MaxDiscountAmt { get; set; } /// /// 折扣幅度减至必须为0.3到1之间的小数(保留小数点后2位) /// [XmlElement("reduce_to_discount_rate")] public string ReduceToDiscountRate { get; set; } } }