37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
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; }
|
||
}
|
||
}
|