using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoRenthouseLeaseOrderSyncModel Data Structure. /// [Serializable] public class AlipayEcoRenthouseLeaseOrderSyncModel : AopObject { /// /// 预览合同二进制流 预览合同html的Base64字符串 /// [JsonProperty("attach_file")] public string AttachFile { get; set; } /// /// 租约开始时间格式 YYYY-MM-dd /// [JsonProperty("begin_date")] public string BeginDate { get; set; } /// /// 证件编号 /// [JsonProperty("card_no")] public string CardNo { get; set; } /// /// 证件类型 不传默认是0 0-身份证; 1-护照; 暂时只支持身份证 2-军人身份证; 3-港澳居民来往内地通行证; 4-台湾同胞来往内地通行证; 5-临时身份证; 6-户口簿; 7-警官证; /// 8-外国人永久居住证 /// [JsonProperty("card_type")] public long CardType { get; set; } /// /// 租约结束时间格式 YYYY-MM-dd /// [JsonProperty("end_date")] public string EndDate { get; set; } /// /// 房源类型 1:分散式 2:集中式 /// [JsonProperty("flats_tag")] public long FlatsTag { get; set; } /// /// 押金金额 /// [JsonProperty("foregift_amount")] public string ForegiftAmount { get; set; } /// /// 0:不免押金 1:免押金 默认 0(不免押金) /// [JsonProperty("free_deposit")] public long FreeDeposit { get; set; } /// /// 家具清单 1-床 2-床垫 3-床头柜 4-衣柜 5-桌子 6-椅子 7-窗帘 8-台灯 9-电视 10-电视柜 11-遥控器 12-空调 13-抽油烟机 14-燃气灶 15-冰箱 16-微波炉 /// 17-餐桌 18-餐椅 19-洗衣机 20-烘干机 21-沙发 22-热水器 /// [JsonProperty("furniture_items")] public string FurnitureItems { get; set; } /// /// KA租约业务号 /// [JsonProperty("lease_code")] public string LeaseCode { get; set; } /// /// 租约创建时间,格式yyyy-MM-dd HH:mm:ss 不传时默认系统时间 /// [JsonProperty("lease_create_time")] public string LeaseCreateTime { get; set; } /// /// 租约状态 0-未确认 1-已确认 2-已退房 3-已撤销 /// [JsonProperty("lease_status")] public long LeaseStatus { get; set; } /// /// 其他费用描述 /// [JsonProperty("other_fee_desc")] public string OtherFeeDesc { get; set; } /// /// 租金付款方式 1-付一; 2-付二; 3-付三; 4-付四; 5-付五; 6-付六; 7-付七; 8-付八; 9-付九; 10-付十; 11-付十一; 12-付十二; /// [JsonProperty("pay_type")] public long PayType { get; set; } /// /// 描述 /// [JsonProperty("remark")] public string Remark { get; set; } /// /// 收租日描述 /// [JsonProperty("rent_day_desc")] public string RentDayDesc { get; set; } /// /// "租金包含相关费用 1-水费; 2-电费; 3-煤气费; 4-有线电视费; 5-网络宽带费; 6-物业管理费; 7-室内设施维修费(人为使用不当除外); 8-保洁费; 9-暖气费;" /// [JsonProperty("rent_include_fee_desc")] public List RentIncludeFeeDesc { get; set; } /// /// 用户姓名 /// [JsonProperty("renter_name")] public string RenterName { get; set; } /// /// 用户手机号 /// [JsonProperty("renter_phone")] public string RenterPhone { get; set; } /// /// 房源编号 flatsTag为1,则代表单编号 2,代表房型编号 /// [JsonProperty("room_code")] public string RoomCode { get; set; } /// /// 房间号 集中式的时候必填 /// [JsonProperty("room_num")] public string RoomNum { get; set; } /// /// 租金金额 比如 2500 2500.5 3000.05等 /// [JsonProperty("sale_amount")] public string SaleAmount { get; set; } } }