using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InSituLaboratory.Entities.SqlSugar { /// /// 当前运行时序状态表 ---下位机 /// [SugarTable("CurrentSequentiual")] public class CurrentSequentiualSqlSugar { [SugarColumn(ColumnName = "Id", IsIdentity = true, IsPrimaryKey = true)] public int Id { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = true)] public DateTime? CreateTime { get; set; } /// /// 时序1运行状态 /// [SugarColumn(IsNullable = true)] public string? Sequentiual1Status { get; set; } /// /// 时序2运行状态 /// [SugarColumn(IsNullable = true)] public string? Sequentiual2Status { get; set; } /// /// 时序3运行状态 /// [SugarColumn(IsNullable = true)] public string? Sequentiual3Status { get; set; } /// /// 时序4运行状态 /// [SugarColumn(IsNullable = true)] public string? Sequentiual4Status { get; set; } /// /// 时序5运行状态 /// [SugarColumn(IsNullable = true)] public string? Sequentiual5Status { get; set; } } }