using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// IntelligentPromoEffect Data Structure. /// [Serializable] public class IntelligentPromoEffect : AopObject { /// /// 平均客单价提升比例 /// [XmlElement("avg_prize_increase")] public string AvgPrizeIncrease { get; set; } /// /// 成本 /// [XmlElement("cost")] public string Cost { get; set; } /// /// 当前效益 /// [XmlElement("current_total_amount")] public string CurrentTotalAmount { get; set; } /// /// 营销活动的预期效果id /// [XmlElement("effect_id")] public string EffectId { get; set; } /// /// 时间范围左值 /// [XmlElement("gmt_from")] public string GmtFrom { get; set; } /// /// 时间范围右值 /// [XmlElement("gmt_to")] public string GmtTo { get; set; } /// /// 成交额 /// [XmlElement("gmv")] public string Gmv { get; set; } /// /// 剩余库存数 /// [XmlElement("remain_stock_num")] public long RemainStockNum { get; set; } /// /// 复购率提升比例 /// [XmlElement("repay_rate_increase")] public string RepayRateIncrease { get; set; } /// /// 发券量提升比例 /// [XmlElement("send_count_increase")] public string SendCountIncrease { get; set; } /// /// 发券数量 /// [XmlElement("take_count")] public long TakeCount { get; set; } /// /// 营销活动效果类型。FORECAST:预估;STATISTICS:统计 /// [XmlElement("type")] public string Type { get; set; } /// /// 核销量 /// [XmlElement("use_count")] public long UseCount { get; set; } } }