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