using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductionSystem_Model.DbModel { public class Ux { /// /// 主键 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 插入时间 /// [SugarColumn(ColumnName = "createdtime")] public DateTime? Createdtime { get; set; } /// /// 设置速度 /// [SugarColumn(ColumnName = "spdset")] public string Spdset { get; set; } /// /// 错误 /// [SugarColumn(ColumnName = "error")] public string Error { get; set; } /// /// PumpMotorSta /// [SugarColumn(ColumnName = "pumpmotorsta")] public string Pumpmotorsta { get; set; } /// /// PumpDryRunningsta /// [SugarColumn(ColumnName = "pumpdryrunningsta")] public string Pumpdryrunningsta { get; set; } /// /// PumpPCState /// [SugarColumn(ColumnName = "pumppcstate")] public string Pumppcstate { get; set; } /// /// PumpTempSta /// [SugarColumn(ColumnName = "pumptempsta")] public string Pumptempsta { get; set; } /// /// PumpinputVolt /// [SugarColumn(ColumnName = "pumpinputvolt")] public string Pumpinputvolt { get; set; } /// /// RealRPM /// [SugarColumn(ColumnName = "realrpm")] public string Realrpm { get; set; } /// /// Temp /// [SugarColumn(ColumnName = "temp")] public string Temp { get; set; } /// /// Cur /// [SugarColumn(ColumnName = "cur")] public string Cur { get; set; } /// /// Version /// [SugarColumn(ColumnName = "version")] public string Version { get; set; } /// /// /// [SugarColumn(ColumnName = "ReqID")] public string Reqid { get; set; } } }