using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoRenthouseBill Data Structure.
///
[Serializable]
public class AlipayEcoRenthouseBill : AopObject
{
///
/// 账单金额
///
[XmlElement("bill_amount")]
public string BillAmount { get; set; }
///
/// 账单创建时间 数据格式: yyyy-mm-dd hh:mm:ss
///
[XmlElement("bill_create_time")]
public string BillCreateTime { get; set; }
///
/// 对描述该笔账单进行具体描述,用于提醒用户。例如:八月房屋租金、八月杂费等。
///
[XmlElement("bill_desc")]
public string BillDesc { get; set; }
///
/// 账单编号-ka保证唯一
///
[XmlElement("bill_no")]
public string BillNo { get; set; }
///
/// 账单状态 0:正常1:作废2:关闭
///
[XmlElement("bill_status")]
public long BillStatus { get; set; }
///
/// 账单类型 10001:房屋租金 10002:其他费用 20001:房屋押金 20002:其他押金
///
[XmlElement("bill_type")]
public string BillType { get; set; }
///
/// 数据格式: yyyy-mm-dd hh:mm:ss
///
[XmlElement("deadline_date")]
public string DeadlineDate { get; set; }
///
/// 定金抵扣金额
///
[XmlElement("deduction_amount")]
public string DeductionAmount { get; set; }
///
/// 优惠金额
///
[XmlElement("discount_amount")]
public string DiscountAmount { get; set; }
///
/// 结束时间 数据格式:yyyy-mm-dd
///
[XmlElement("end_date")]
public string EndDate { get; set; }
///
/// 租约编号(KA内部租约业务编号)
///
[XmlElement("lease_no")]
public string LeaseNo { get; set; }
///
/// 其他未涵盖信息
///
[XmlElement("memo")]
public string Memo { get; set; }
///
/// 最低支付金额
///
[XmlElement("min_pay_amount")]
public string MinPayAmount { get; set; }
///
/// 已支付金额
///
[XmlElement("paid_amount")]
public string PaidAmount { get; set; }
///
/// 1:禁止tp发起支付
///
[XmlElement("pay_lock")]
public long PayLock { get; set; }
///
/// 禁止支付原因-页面提示租客
///
[XmlElement("pay_lock_memo")]
public string PayLockMemo { get; set; }
///
/// 支付状态 0:未支付1:已支付
///
[XmlElement("pay_status")]
public long PayStatus { get; set; }
///
/// 账单支付时间 数据格式: yyyy-mm-dd hh:mm:ss
///
[XmlElement("pay_time")]
public string PayTime { get; set; }
///
/// 开始时间 数据格式:yyyy-mm-dd
///
[XmlElement("start_date")]
public string StartDate { get; set; }
}
}