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