using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// CPBillResultSet Data Structure. /// [Serializable] public class CPBillResultSet : AopObject { /// /// 账期 /// [JsonProperty("acct_period")] public string AcctPeriod { get; set; } /// /// 应收金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000] /// [JsonProperty("bill_entry_amount")] public string BillEntryAmount { get; set; } /// /// 物业费账单应收明细条目ID /// [JsonProperty("bill_entry_id")] public string BillEntryId { get; set; } /// /// 费用类型 /// [JsonProperty("cost_type")] public string CostType { get; set; } /// /// 缴费截止日期 /// [JsonProperty("deadline")] public string Deadline { get; set; } /// /// 物业系统端房屋编号 /// [JsonProperty("out_room_id")] public string OutRoomId { get; set; } /// /// 出账日期 /// [JsonProperty("release_day")] public string ReleaseDay { get; set; } /// /// 房屋门牌地址 /// [JsonProperty("room_address")] public string RoomAddress { get; set; } /// /// 账单条目当前状态,状态值: FINISH_PAYMENT - 用户完成支付和销账 UNDER_PAYMENT - 账单锁定待用户完成支付 WAIT_PAYMENT - 待缴且未过缴费截止日期 OUT_OF_DATE - /// 未支付且已过缴费截止日期 /// [JsonProperty("status")] public string Status { get; set; } } }