Files
Web_Faces_Prod/Face.Web/Areas/App/Models/InfoRoolall.cs
2025-11-25 17:41:57 +08:00

50 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}