NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantOperatorSearc...

39 lines
991 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMerchantOperatorSearchBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantOperatorSearchBatchqueryModel : AopObject
{
/// <summary>
/// 授权码
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 当前页码从1开始
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页大小
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// T - "已激活" U - "已锁定" W - "未激活"
/// </summary>
[XmlArray("status")]
[XmlArrayItem("string")]
public List<string> Status { get; set; }
}
}