using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProductionSystem_Model { public partial class Stone { /// /// 主键 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 插入时间 /// [SugarColumn(ColumnName = "createdtime")] public DateTime? Createdtime { get; set; } /// /// 请求模式 /// [SugarColumn(ColumnName = "moderequest")] public string Moderequest { get; set; } /// /// 请求 /// [SugarColumn(ColumnName = "initialreq")] public string Initialreq { get; set; } /// /// 请求ID /// [SugarColumn(ColumnName = "reqid")] public string Reqid { get; set; } /// /// 反馈模式 /// [SugarColumn(ColumnName = "actualmode")] public string Actualmode { get; set; } /// /// /// [SugarColumn(ColumnName = "hldtrqactive")] public string Hldtrqactive { get; set; } /// /// /// [SugarColumn(ColumnName = "moveactive")] public string Moveactive { get; set; } /// /// /// [SugarColumn(ColumnName = "initialactive")] public string Initialactive { get; set; } /// /// /// [SugarColumn(ColumnName = "initialrequired")] public string Initialrequired { get; set; } /// /// /// [SugarColumn(ColumnName = "undervoltage")] public string Undervoltage { get; set; } /// /// /// [SugarColumn(ColumnName = "overvoltage")] public string Overvoltage { get; set; } /// /// /// [SugarColumn(ColumnName = "overtemperror")] public string Overtemperror { get; set; } /// /// /// [SugarColumn(ColumnName = "responseerror")] public string Responseerror { get; set; } /// /// /// [SugarColumn(ColumnName = "blockageerror")] public string Blockageerror { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "overcurrenterror")] public string Overcurrenterror { get; set; } } }