using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// HelloBikePriceConstraint Data Structure. /// [Serializable] public class HelloBikePriceConstraint : AopObject { /// /// 优惠卡原价,单位为分 /// [XmlElement("base_price_cent")] public long BasePriceCent { get; set; } /// /// 优惠卡类型,枚举值为 mcard,qcard,hycard,ycard,tcard /// [XmlElement("card_type")] public string CardType { get; set; } /// /// 默认优惠卡打折后的价格,单位为分 /// [XmlElement("default_promo_price_cent")] public long DefaultPromoPriceCent { get; set; } /// /// 优惠卡价格区间上限,单位为分 /// [XmlElement("high_price_cent")] public long HighPriceCent { get; set; } /// /// 优惠卡价格区间下限,单位为分 /// [XmlElement("lower_price_cent")] public long LowerPriceCent { get; set; } /// /// 是否定价 /// [XmlElement("pricing")] public bool Pricing { get; set; } /// /// 用户是否可购买 /// [XmlElement("visible")] public bool Visible { get; set; } } }