61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AntMerchantOrderStoreBatchqueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AntMerchantOrderStoreBatchqueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 结束时间
|
||
/// </summary>
|
||
[XmlElement("end_time")]
|
||
public string EndTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 订单状态
|
||
/// </summary>
|
||
[XmlElement("order_status")]
|
||
public string OrderStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 当前页码
|
||
/// </summary>
|
||
[XmlElement("page_no")]
|
||
public long PageNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 分页数量
|
||
/// </summary>
|
||
[XmlElement("page_size")]
|
||
public long PageSize { get; set; }
|
||
|
||
/// <summary>
|
||
/// 插件业务场景code,预约为ShopService
|
||
/// </summary>
|
||
[XmlElement("scene")]
|
||
public string Scene { get; set; }
|
||
|
||
/// <summary>
|
||
/// 线下门店ID
|
||
/// </summary>
|
||
[XmlElement("shop_id")]
|
||
public string ShopId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 开始时间
|
||
/// </summary>
|
||
[XmlElement("start_time")]
|
||
public string StartTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 线上店的ID
|
||
/// </summary>
|
||
[XmlElement("store_open_id")]
|
||
public string StoreOpenId { get; set; }
|
||
}
|
||
}
|