Files

50 lines
1.5 KiB
C#
Raw Permalink Normal View History

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