NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataMallIndi...

49 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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