NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataIndicato...

49 lines
1.6 KiB
C#
Raw 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>
/// KoubeiMarketingDataIndicatorQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataIndicatorQueryModel : AopObject
{
/// <summary>
/// 开始日期,格式:yyyyMMdd
/// </summary>
[XmlElement("begin_date")]
public string BeginDate { get; set; }
/// <summary>
/// 业务类型,可选值有六个 1MemberQuery 商户会员数据查询 2MemberQueryByStore 门店会员数据查询 3TradeQuery 商户交易数据查询 4TradeQueryByStore 门店交易数据查询 5CampaignQuery 商户活动数据查询 6CampaignQueryByStore 门店活动数据查询
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 结束日期 格式:yyyyMMdd
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// camp_id为活动ID sort_field为排序指标KEY sort_typeASC表示升序,DESC表示降序 store_Ids为门店ID多个门店使用逗号分隔
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 当前页数默认为1
/// </summary>
[XmlElement("page_num")]
public string PageNum { get; set; }
/// <summary>
/// 每页记录数,不能超过50默认为20
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
}
}