NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketShopBatc...

25 lines
871 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>
/// AlipayOfflineMarketShopBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineMarketShopBatchqueryModel : AopObject
{
/// <summary>
/// 表示接口查询门店的业务渠道限制ALL、 POS、不传。不传代表只查询普通门店传入POS代表只查询简易门店传入ALL代表查询普通门店和简易门店。
/// </summary>
[XmlElement("biz_channel")]
public string BizChannel { get; set; }
/// <summary>
/// 页码,第一页传入"1"默认500个结果为一页。此参数必须是大于0的正整数为0时将查询报错。
/// </summary>
[XmlElement("page_no")]
public string PageNo { get; set; }
}
}