NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringCookCondition...

37 lines
982 B
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>
/// KoubeiCateringCookConditionBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringCookConditionBatchqueryModel : AopObject
{
/// <summary>
/// 商户的支付宝user_id. 商户授权后,isv能获得
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// 查询页码,表示第几页
/// </summary>
[XmlElement("page_no")]
public string PageNo { get; set; }
/// <summary>
/// 分页大小表示每页查询数量不超过50
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 口碑店铺id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}