using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PrizePriceStrategy Data Structure. /// [Serializable] public class PrizePriceStrategy : AopObject { /// /// 根据不同的奖品类型填写不同的值,具体用法联系营销技术获取 /// [XmlElement("max_price")] public string MaxPrice { get; set; } /// /// 根据不同的奖品类型填写不同的值,具体用法联系营销技术获取 /// [XmlElement("min_price")] public string MinPrice { get; set; } /// /// 废弃-不再使用 /// [XmlElement("stragety_value")] public string StragetyValue { get; set; } /// /// RANDOM_PRICE随机,FIX_PRICE定额奖品,不同的定价策略填写不同值,具体根据业务评估 /// [XmlElement("strategy_type")] public string StrategyType { get; set; } /// /// 定价策略值,根据不同的奖品类型填写不同的值,具体用法联系营销技术获取 /// [XmlElement("strategy_value")] public string StrategyValue { get; set; } } }