初始化
This commit is contained in:
35
TestWebSocket/devicemanage.cs
Normal file
35
TestWebSocket/devicemanage.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user