using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MStepCashRule Data Structure. /// [Serializable] public class MStepCashRule : AopObject { /// /// 优惠金额(单位:分) /// [XmlElement("reduction_amount")] public long ReductionAmount { get; set; } /// /// 起步金额(单位:分) /// [XmlElement("threshold_amount")] public long ThresholdAmount { get; set; } } }