using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoRenthouseRoomConcentrationSyncModel Data Structure. /// [Serializable] public class AlipayEcoRenthouseRoomConcentrationSyncModel : AopObject { /// /// 户型-房 数值范围:1-26 /// [JsonProperty("bedroom_count")] public long BedroomCount { get; set; } /// /// 可入住时间 YYYY-MM-DD /// [JsonProperty("checkin_time")] public string CheckinTime { get; set; } /// /// 小区Code,详见文档 http://ecopublic.oss-cn-hangzhou.aliyuncs.com/eco/tpmogo/CommunityInfos/CommunityInfos.xls /// [JsonProperty("community_code")] public string CommunityCode { get; set; } /// /// 所在楼层 数值范围:1-99,不能大于房屋总楼层 /// [JsonProperty("floor_count")] public long FloorCount { get; set; } /// /// 押金 数值范围:0-¥420000.00 /// [JsonProperty("foregift_amount")] public string ForegiftAmount { get; set; } /// /// 免押金开始时间 YYYY-MM-dd /// [JsonProperty("free_begin_date")] public string FreeBeginDate { get; set; } /// /// 免押金结束时间 YYYY-MM-dd /// [JsonProperty("free_end_date")] public string FreeEndDate { get; set; } /// /// 通过"文件上传"接口返回的房源图片url路径。房间照片可录入0~10张,目前仅支持jpg、png、jpeg格式 /// [JsonProperty("images")] public List Images { get; set; } /// /// 房源描述 字符串,最大字符长度400 /// [JsonProperty("intro")] public string Intro { get; set; } /// /// 集中式最高价格,支持小数点后面2位。 新增时必输字段,修改时如果不转值则以上次接口调用值为准。 /// [JsonProperty("max_amount")] public string MaxAmount { get; set; } /// /// 公寓别名 是否必须:(新增)是/(修改)否 /// [JsonProperty("nickname")] public string Nickname { get; set; } /// /// 其它费用 /// [JsonProperty("other_amount")] public List OtherAmount { get; set; } /// /// 管家姓名 /// [JsonProperty("owners_name")] public string OwnersName { get; set; } /// /// 管家电话 手机号码,必须为400开头 /// [JsonProperty("owners_tel")] public string OwnersTel { get; set; } /// /// 户型-厅 数值范围:0-10 /// [JsonProperty("parlor_count")] public long ParlorCount { get; set; } /// /// 付款方式(1:付一,2:付二) /// [JsonProperty("pay_type")] public long PayType { get; set; } /// /// 出租状态 数值范围:1未租、2已租 /// [JsonProperty("rent_status")] public long RentStatus { get; set; } /// /// 出租类型 1:整租,2:合租 /// [JsonProperty("rent_type")] public long RentType { get; set; } /// /// 租金 数值范围:¥100.00 - ¥35000.00 ,支持小数点后面2位 /// [JsonProperty("room_amount")] public string RoomAmount { get; set; } /// /// 房间面积 数值范围:5.00㎡-300.00㎡,支持小数点后面2位 /// [JsonProperty("room_area")] public string RoomArea { get; set; } /// /// KA内部存储的房源编号 /// [JsonProperty("room_code")] public string RoomCode { get; set; } /// /// 物品配置(房间) 2:空调;3:热水器;4:洗衣机;5:冰箱;6:电视;7:微波炉;8:燃气灶;9:抽油烟机;10:电磁炉;11:床;11:WIFI;12:书桌;13:衣柜;14:沙发;15:阳台; /// [JsonProperty("room_configs")] public List RoomConfigs { get; set; } /// /// 房源初始上下架状态 上架状态租房平台会展示该房间信息,下架状态反之 /// [JsonProperty("room_status")] public long RoomStatus { get; set; } /// /// 户型-卫 数值范围:0-10 /// [JsonProperty("toilet_count")] public long ToiletCount { get; set; } /// /// 房屋总楼层 数值范围:1-99,不能小于所在楼层 /// [JsonProperty("total_floor_count")] public long TotalFloorCount { get; set; } } }