2024-06-12 10:17:01 +00:00
|
|
|
|
using SqlSugar;
|
2024-05-22 10:37:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2024-06-12 10:17:01 +00:00
|
|
|
|
namespace InSituLaboratory.Entities.SqlSugar
|
2024-05-22 10:37:51 +00:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// 当前运行时序状态表 ---下位机
|
2024-05-22 10:37:51 +00:00
|
|
|
|
/// </summary>
|
2024-06-12 10:17:01 +00:00
|
|
|
|
[SugarTable("CurrentSequentiual")]
|
|
|
|
|
|
public class CurrentSequentiualSqlSugar
|
2024-05-22 10:37:51 +00:00
|
|
|
|
{
|
|
|
|
|
|
[SugarColumn(ColumnName = "Id", IsIdentity = true, IsPrimaryKey = true)]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
2024-06-12 10:17:01 +00:00
|
|
|
|
public DateTime? CreateTime { get; set; }
|
2024-05-22 10:37:51 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// 当前时序运行状态
|
2024-05-22 10:37:51 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
2024-06-12 10:17:01 +00:00
|
|
|
|
public string Status { get; set; }
|
2024-05-22 10:37:51 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// 当前时序序列号
|
2024-05-22 10:37:51 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
2024-06-12 10:17:01 +00:00
|
|
|
|
public string Number { get; set; }
|
|
|
|
|
|
|
2024-05-22 10:37:51 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// 当前运行的设备编号
|
2024-05-22 10:37:51 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SugarColumn(IsNullable = true)]
|
2024-06-12 10:17:01 +00:00
|
|
|
|
public string DeviceNumber { get; set; }
|
2024-05-22 10:37:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|