using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiMarketingDataMallRecommendGetModel Data Structure. /// [Serializable] public class KoubeiMarketingDataMallRecommendGetModel : AopObject { /// /// 获取几条数据,最大值传入50,默认值10 /// [XmlElement("count")] public long Count { get; set; } /// /// 获取的数据类型:big_item(商圈商品)、small_item(商圈下门店商品)、big_voucher(商圈券)、small_voucher(商圈下门店券) /// [XmlElement("data_type")] public string DataType { get; set; } /// /// 设备ID /// [XmlElement("device_id")] public string DeviceId { get; set; } /// /// 商圈ID /// [XmlElement("mall_id")] public string MallId { get; set; } /// /// 店铺类目ID /// [XmlArray("shop_category_ids")] [XmlArrayItem("string")] public List ShopCategoryIds { get; set; } /// /// 起始数据下标,默认值0 /// [XmlElement("start")] public long Start { get; set; } /// /// 支付宝用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }