NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataDishdiag...

37 lines
1.4 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>
/// KoubeiMarketingDataDishdiagnoseBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataDishdiagnoseBatchqueryModel : AopObject
{
/// <summary>
/// 查询菜品类型001是明星菜品002是潜力菜品003是其他菜品除明星菜品和潜力菜品之外的其他一律作为其他菜品 编号为003。 2- 如果要查询所有的则传入999。具体的值可以通过koubei.marketing.data.dishdiagnosetype.batchquery来查询同时会返回类型与说明
/// </summary>
[XmlElement("item_diagnose_type")]
public string ItemDiagnoseType { get; set; }
/// <summary>
/// 从第一页开始默认值1
/// </summary>
[XmlElement("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 每页大小默认值50同时page_size*page_no最多条数是300条查询请注意。超过后不会再返回数据。
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 查询数据时间,最新数据是昨天的。T-1的数据最大保留30天,格式YYYYMMDD。比如20170103
/// </summary>
[XmlElement("report_date")]
public string ReportDate { get; set; }
}
}