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
{
///
/// 当前运行时序状态表 ---下位机反馈
///
public class CurrentSequentiual
{
[Key]
public int Id { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 当前时序运行状态
///
public string Status { get; set; }
///
/// 当前时序序列号
///
public string Number { get; set; }
///
/// 当前运行的设备编号
///
public string DeviceNumber { get; set; }
}
}