20230201_145_upperpc/InSituLaboratory.Entities/SqlSugar/CurrentSequentiualSqlSugar.cs

57 lines
1.5 KiB
C#
Raw Normal View History

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