NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiServindustryLeadsReco...

37 lines
1.3 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>
/// KoubeiServindustryLeadsRecordBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiServindustryLeadsRecordBatchqueryModel : AopObject
{
/// <summary>
/// 查询时间范围结束时间(客资创建时间),不能早于查询时间范围的开始时间,查询时间范围要在三个月之内(开始和结束时间的跨度),不能超过三个月。
/// </summary>
[XmlElement("gmt_end")]
public string GmtEnd { get; set; }
/// <summary>
/// 查询时间范围开始时间(客资创建时间),不能早于2020-05-01 00:00:00
/// </summary>
[XmlElement("gmt_start")]
public string GmtStart { get; set; }
/// <summary>
/// 分页参数页码第几页要大于0必须是数字
/// </summary>
[XmlElement("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 分页参数每页查询数量大小必须大于0必须是数字目前默认20不能超过20
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}