NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantOrderStoreBatchq...

61 lines
1.5 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>
/// 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; }
}
}