using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Model.domain { public class AGVState { /// /// 自增编号 /// [SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } /// /// AGV编号 /// public string AGVNo { get; set; } /// /// AGV类型 /// public string AGVType { get; set; } /// /// 任务编号 /// public string ?TaskNo { get; set; } /// /// AGV报警状态(1:正常,2:故障) /// public string AGVAlarmState { get; set; } /// /// AGV工作状态(1:空闲,2:忙碌) /// public string AGVWorkState { get; set; } /// /// 刷新时间 /// public DateTime RefreshTime { get; set; } } }