41 lines
926 B
C#
41 lines
926 B
C#
|
|
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>
|
|||
|
|
/// 当前时序运行状态
|
|||
|
|
/// </summary>
|
|||
|
|
public string Status { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前时序序列号
|
|||
|
|
/// </summary>
|
|||
|
|
public string Number { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前运行的设备编号
|
|||
|
|
/// </summary>
|
|||
|
|
public string DeviceNumber { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|