NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailKbcodeQueryMode...

31 lines
878 B
C#
Raw 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>
/// KoubeiRetailKbcodeQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailKbcodeQueryModel : AopObject
{
/// <summary>
/// 创建码接口返回的批次id如果不填写则查询这个带运营商户下所有开放接口生成的码
/// </summary>
[XmlElement("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 当前页码大于0的整数默认为1
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页返回的记录数1~100的整数默认为10
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}