NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserInviteOnlinedetai...

43 lines
1.0 KiB
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>
/// AlipayUserInviteOnlinedetailQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserInviteOnlinedetailQueryModel : AopObject
{
/// <summary>
/// 页号
/// </summary>
[XmlElement("page")]
public long Page { get; set; }
/// <summary>
/// 页大小page_size上限500当大于500时最多返回500条记录
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 二级渠道
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 一级渠道
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// 日期
/// </summary>
[XmlElement("report_date")]
public string ReportDate { get; set; }
}
}