using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// /// [SugarTable("base_device_state")] public class Base_device_state { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Id" ,IsPrimaryKey = true,IsIdentity = true) ] public int Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="deviceId" ) ] public int DeviceId { get; set; } /// /// 备 注:设备连接状态 0为未连接 1为连接 /// 默认值: /// [SugarColumn(ColumnName="deviceState" ) ] public int? DeviceState { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="deviceTime" ) ] public DateTime? DeviceTime { get; set; } } }