NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifeRooominfoQue...

31 lines
889 B
C#
Raw 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>
/// AlipayEcoCplifeRooominfoQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeRooominfoQueryModel : AopObject
{
/// <summary>
/// 业主所在物业小区ID(支付宝平台唯一小区ID标示)
/// </summary>
[XmlElement("community_id")]
public string CommunityId { get; set; }
/// <summary>
/// 分页查询的页码数分页从1开始计数。该参数不传入的时候默认为1
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页查询的每页最大数据条数。默认为200
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}