using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEcoRenthouseRoomStateSyncModel Data Structure.
///
[Serializable]
public class AlipayEcoRenthouseRoomStateSyncModel : AopObject
{
///
/// 房源类型(1:分散式 2:集中式)
///
[JsonProperty("flats_tag")]
public long FlatsTag { get; set; }
///
/// 出租状态(1未租、2已租)
///
[JsonProperty("rent_status")]
public long RentStatus { get; set; }
///
/// 公寓运营商内部存储的房源编号(ka系统的房源id)
///
[JsonProperty("room_code")]
public string RoomCode { get; set; }
///
/// 是否上架,0:下架,1:上架
///
[JsonProperty("room_status")]
public long RoomStatus { get; set; }
}
}