NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportOffl...

25 lines
690 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>
/// AlipayCommerceTransportOfflinepayUserblacklistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportOfflinepayUserblacklistQueryModel : AopObject
{
/// <summary>
/// 用户黑名单分页ID1开始
/// </summary>
[XmlElement("page_index")]
public long PageIndex { get; set; }
/// <summary>
/// 脱机交易用户黑名单分页页大小最大页大小不超过1000
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}