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; } /// /// 当前时序运行状态 /// [SugarColumn(IsNullable = true)] public string Status { get; set; } /// /// 当前时序序列号 /// [SugarColumn(IsNullable = true)] public string Number { get; set; } /// /// 当前运行的设备编号 /// [SugarColumn(IsNullable = true)] public string DeviceNumber { get; set; } } }