using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiMarketingDataMallIndicatorQueryModel Data Structure.
///
[Serializable]
public class KoubeiMarketingDataMallIndicatorQueryModel : AopObject
{
///
/// 开始日期,格式:yyyyMMdd
///
[XmlElement("begin_date")]
public string BeginDate { get; set; }
///
/// 业务类型,目前可选值有5个 1,mallIndustryMemberStatistics 商户会员统计信息 2,mallIndustryTradeStatistics 行业交易统计信息 3,mallIndustryEventStatistics 行业活动统计信息 4,mallIndustryInfo 最新的行业维表信息 5,mallIndustryConsumptionStatistics MALL消费能力统计信息
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 结束日期,格式:yyyyMMdd
///
[XmlElement("end_date")]
public string EndDate { get; set; }
///
/// camp_id:为活动ID order_by:为排序指标KEY,目前只支持文档中给出的例子字段 order_type:ASC表示升序,DESC表示降序 cate_1_ids:为门店ID,多个门店使用逗号分隔
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 当前页数,默认为1
///
[XmlElement("page_num")]
public long PageNum { get; set; }
///
/// 每页记录数,不能超过50。默认为20
///
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}