2024-06-12 10:17:01 +00:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace InSituLaboratory.Entities.SqlSugar
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 当前运行时序状态表 ---下位机反馈
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class CurrentSequentiual
|
|
|
|
|
|
{
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-17 10:12:16 +00:00
|
|
|
|
/// 时序1运行状态
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// </summary>
|
2024-06-17 10:12:16 +00:00
|
|
|
|
public string? Sequentiual1Status { get; set; }
|
2024-06-12 10:17:01 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-17 10:12:16 +00:00
|
|
|
|
/// 时序2运行状态
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// </summary>
|
2024-06-17 10:12:16 +00:00
|
|
|
|
public string? Sequentiual2Status { get; set; }
|
2024-06-12 10:17:01 +00:00
|
|
|
|
|
2024-06-17 10:12:16 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 时序3运行状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Sequentiual3Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 时序4运行状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Sequentiual4Status { get; set; }
|
2024-06-12 10:17:01 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-17 10:12:16 +00:00
|
|
|
|
/// 时序5运行状态
|
2024-06-12 10:17:01 +00:00
|
|
|
|
/// </summary>
|
2024-06-17 10:12:16 +00:00
|
|
|
|
public string? Sequentiual5Status { get; set; }
|
2024-06-12 10:17:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|