NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifeCommunityBat...

31 lines
1.1 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>
/// AlipayEcoCplifeCommunityBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeCommunityBatchqueryModel : AopObject
{
/// <summary>
/// 分页查询的当前页码数分页从1开始计数。 该参数不传入的时候默认为1。
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页查询的每页最大数据条数取值范围1-500。 不传该参数默认为200。
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 如传入该参数,则返回指定状态的小区,支持的状态值: PENDING_ONLINE 待上线 ONLINE - 上线 MAINTAIN - 维护中 OFFLINE - 下线 不传该值则默认返回所有状态的小区。
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}