using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace CommonEntity { public class SomeDeviceExistsData { public string HostNUMBER { get; set; } public string IP { get; set; } public string MAC { get; set; } public int HotelID { get; set; } public int RoomTypeID { get; set; } public int HostID { get; set; } public string HotelCode { get; set; } public string RoomNumber { get; set; } public int FrameNo { get; set; } /// /// 电源锁定(0正常,1锁定) /// public bool PowerSupply { get; set; } /// /// 门锁电量 /// public ushort LockVoltage { get; set; } /// /// 主机温度 /// public byte HostTemp { get; set; } public string CreatDate { get; set; } /// /// 有的时候有用 /// public string ModalID { get; set; } /// /// 房门开还是关 /// public bool DoorLockStatus { get; set; } /// /// 门锁状态 /// public int LockStatus { get; set; } /// /// 房态 是出租房,还是空房 /// public RoomStatus RoomStatus { get; set; } public string RoomCard{get;set;} public string OutCardTime { get; set; } public RoomCard RoomCardData { get; set; } public string DeviceStatusPushURL { get; set; } public string TianMaoCUID { get; set; } public string XiaoDuCUID { get; set; } public string WelcomeSpeech { get; set; } public string GoodbyeSpeech { get; set; } //断电重置智能音箱 public bool IsPowerOffResetXiaoDu { get; set; } public string FaultPushURL { get; set; } public string DisableStartTime { get; set; } public string DisableEndTime { get; set; } public bool IsWelcomeDisableTime { get; set; } } public class AirCondition { public int AirID = 0; public int AirStatus = 2; public string ModalAddress = ""; public int RoomTemp = 0; public int SettingTemp = 0; public int Mode = 0; public int FanSpeed = 0; public int Valve = 0; public string ValveName; //阀门 } }