using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoCplifeBillBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayEcoCplifeBillBatchqueryModel : AopObject
{
///
/// 查询过滤条件之一: 根据账期查询
///
[XmlElement("acct_period")]
public string AcctPeriod { get; set; }
///
/// 查询过滤条件之一: 根据开发者上传物业费账单时需要的批次号查询指定批次下上传成功的账单。
///
[XmlElement("batch_id")]
public string BatchId { get; set; }
///
/// 查询过滤条件之一:根据账单状态查询,不传该字段则返回所有状态的账单。 状态值: FINISH_PAYMENT - 用户完成支付和销账 UNDER_PAYMENT - 账单锁定待用户完成支付 WAIT_PAYMENT - 待缴且未过缴费截止日期 OUT_OF_DATE - 未支付且已过缴费截止日期
///
[XmlElement("bill_status")]
public string BillStatus { get; set; }
///
/// 支付宝社区小区统一编号,必须在授权物业账号名下存在。
///
[XmlElement("community_id")]
public string CommunityId { get; set; }
///
/// 查询过滤条件之一: 根据费用类型查询,只支持精确查询。
///
[XmlElement("cost_type")]
public string CostType { get; set; }
///
/// 查询过滤条件之一: 根据物业系统端房屋编号查询
///
[XmlElement("out_room_id")]
public string OutRoomId { get; set; }
///
/// 分页查询的当前页码数,分页从1开始计数。 该参数不传入的时候,默认为1。
///
[XmlElement("page_num")]
public long PageNum { get; set; }
///
/// 分页查询的每页最大数据条数,取值范围1-500。 不传该参数默认为200。
///
[XmlElement("page_size")]
public long PageSize { get; set; }
///
/// 查询过滤条件之一: 根据出账日期查询,格式为YYYYMMDD,只支持精确查询。
///
[XmlElement("release_day")]
public string ReleaseDay { get; set; }
}
}