忽略dll文件git
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user