Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoCplifeCommunityBatchqueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

31 lines
1.0 KiB
C#
Raw 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.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoCplifeCommunityBatchqueryResponse.
/// </summary>
public class AlipayEcoCplifeCommunityBatchqueryResponse : AopResponse
{
/// <summary>
/// 若查询到符合条件的小区,返回物业小区摘要信息列表
/// </summary>
[JsonProperty("community_list")]
public List<CPCommunitySet> CommunityList { get; set; }
/// <summary>
/// 当前页码
/// </summary>
[JsonProperty("current_page_num")]
public long CurrentPageNum { get; set; }
/// <summary>
/// 开发者帮助物业创建成功并符合查询条件的小区总数。 若不传入app_auth_token参数则返回开发者代创建成功的所有小区总数。 若传入app_auth_token参数则返回对应开发者帮助该授权物业公司创建成功的小区总数。
/// </summary>
[JsonProperty("total_community_count")]
public long TotalCommunityCount { get; set; }
}
}