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