36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace TestWebSocket
|
|||
|
|
{
|
|||
|
|
public class devicemanage
|
|||
|
|
{
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public int Facelid { get; set; }
|
|||
|
|
|
|||
|
|
public string SerialNo { get; set; }
|
|||
|
|
public Nullable<DateTime> CreatedDate { get; set; }
|
|||
|
|
public string HotelCode { get; set; }
|
|||
|
|
public int RoomId { get; set; }
|
|||
|
|
public string Factory { get; set; }
|
|||
|
|
public bool Status { get; set; }
|
|||
|
|
public Nullable<DateTime> bindingDate { get; set; }
|
|||
|
|
public bool bindingStatus { get; set; }
|
|||
|
|
public string faceIp { get; set; }
|
|||
|
|
public string faceAddress { get; set; }
|
|||
|
|
public int maintainStatus { get; set; }
|
|||
|
|
public int isPublicArea { get; set; }
|
|||
|
|
public string AssociatedPublicArea { get; set; }
|
|||
|
|
public string APKVersion { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class FaceRoomType //房间类型
|
|||
|
|
{
|
|||
|
|
public string RoomTypeName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|