Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoCplifeCommunityBatchqueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
1001 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoCplifeCommunityBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeCommunityBatchqueryModel : AopObject
{
/// <summary>
/// 分页查询的当前页码数分页从1开始计数。 该参数不传入的时候默认为1。
/// </summary>
[JsonProperty("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页查询的每页最大数据条数取值范围1-500。 不传该参数默认为200。
/// </summary>
[JsonProperty("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 如传入该参数,则返回指定状态的小区,支持的状态值: PENDING_ONLINE 待上线 ONLINE - 上线 MAINTAIN - 维护中 OFFLINE - 下线 不传该值则默认返回所有状态的小区。
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}