67 lines
2.5 KiB
C#
67 lines
2.5 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoCplifeBillBatchqueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayEcoCplifeBillBatchqueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 查询过滤条件之一: 根据账期查询
|
||
/// </summary>
|
||
[XmlElement("acct_period")]
|
||
public string AcctPeriod { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查询过滤条件之一: 根据开发者上传物业费账单时需要的批次号查询指定批次下上传成功的账单。
|
||
/// </summary>
|
||
[XmlElement("batch_id")]
|
||
public string BatchId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查询过滤条件之一:根据账单状态查询,不传该字段则返回所有状态的账单。 状态值: FINISH_PAYMENT - 用户完成支付和销账 UNDER_PAYMENT - 账单锁定待用户完成支付 WAIT_PAYMENT - 待缴且未过缴费截止日期 OUT_OF_DATE - 未支付且已过缴费截止日期
|
||
/// </summary>
|
||
[XmlElement("bill_status")]
|
||
public string BillStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支付宝社区小区统一编号,必须在授权物业账号名下存在。
|
||
/// </summary>
|
||
[XmlElement("community_id")]
|
||
public string CommunityId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查询过滤条件之一: 根据费用类型查询,只支持精确查询。
|
||
/// </summary>
|
||
[XmlElement("cost_type")]
|
||
public string CostType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查询过滤条件之一: 根据物业系统端房屋编号查询
|
||
/// </summary>
|
||
[XmlElement("out_room_id")]
|
||
public string OutRoomId { get; set; }
|
||
|
||
/// <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>
|
||
/// 查询过滤条件之一: 根据出账日期查询,格式为YYYYMMDD,只支持精确查询。
|
||
/// </summary>
|
||
[XmlElement("release_day")]
|
||
public string ReleaseDay { get; set; }
|
||
}
|
||
}
|