using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Face.Web.Areas.App.Models { public class InfoRoomall { /// /// //房间ID,内部数据库主键 /// public string InnerRoomId { get; set; } /// /// //酒店的ID,内部数据库主键 /// public string HotelId { get; set; } /// /// //酒店名字 /// public string HotelName { get; set; } /// /// //酒店编码 /// public string ExternalHotelCode { get; set; } /// /// //房间号码 /// public string RoomNumber { get; set; } /// /// //开房状态 /// public int RoomCheckInStatus { get; set; } public int Facelid { get; set; } public string SerialNo { get; set; } public Nullable CreatedDate { get; set; } public string HotelCode { get; set; } public Nullable RoomId { get; set; } public string Factory { get; set; } public bool Status { get; set; } public Nullable bindingDate { get; set; } public bool bindingStatus { get; set; } public string faceIp { get; set; } public string faceAddress { get; set; } public Nullable maintainStatus { get; set; } } }