using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductionSystem_Model { public partial class Uy { /// /// 主键 /// [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 = "dryrunningsta")] public string Dryrunningsta { get; set; } /// /// 电压值 /// [SugarColumn(ColumnName = "volt")] public string Volt { get; set; } /// /// 模式启动 /// [SugarColumn(ColumnName = "motorsta")] public string Motorsta { get; set; } /// /// 电源启动 /// [SugarColumn(ColumnName = "powersta")] public string Powersta { get; set; } /// /// 温度启动 /// [SugarColumn(ColumnName = "tempsta")] public string Tempsta { get; set; } /// /// 异常 /// [SugarColumn(ColumnName = "error")] public string Error { get; set; } /// /// 实际转速 /// [SugarColumn(ColumnName = "realrpm")] public string Realrpm { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 请求Id /// [SugarColumn(ColumnName = "reqid")] public string Reqid { get; set; } } }