using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace Sln.Wcs.Model.Domain { /// /// AGV状态信息实体类 /// [SugarTable("wcs_agv_status")] public class WcsAgvStatus { /// /// 机器人海康编号(主键) /// [SugarColumn(ColumnName = "robotCode", IsPrimaryKey = true, ColumnDescription = "机器人海康编号")] public string RobotCode { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName = "equip_no", ColumnDescription = "设备编号")] public string EquipNo { get; set; } /// /// 小车名称 /// [SugarColumn(ColumnName = "agvName", ColumnDescription = "小车名称")] public string AgvName { get; set; } /// /// 电量 /// [SugarColumn(ColumnName = "battery", ColumnDescription = "电量")] public string Battery { get; set; } /// /// 是否已被排除,被排除后不接受新任务(1-排除,0-正常) /// [SugarColumn(ColumnName = "exclType", ColumnDescription = "是否已被排除")] public string ExclType { get; set; } /// /// 地图编号 /// [SugarColumn(ColumnName = "mapCode", ColumnDescription = "地图编号")] public string MapCode { get; set; } /// /// 是否在线 /// [SugarColumn(ColumnName = "online", ColumnDescription = "是否在线")] public string Online { get; set; } /// /// 路线 /// [SugarColumn(ColumnName = "path", ColumnDescription = "路线")] public string Path { get; set; } /// /// 背货架的编号 /// [SugarColumn(ColumnName = "podCode", ColumnDescription = "背货架的编号")] public string PodCode { get; set; } /// /// 背货架的方向 /// [SugarColumn(ColumnName = "podDir", ColumnDescription = "背货架的方向")] public string PodDir { get; set; } /// /// X坐标 /// [SugarColumn(ColumnName = "posX", ColumnDescription = "X坐标")] public string PosX { get; set; } /// /// Y坐标 /// [SugarColumn(ColumnName = "posY", ColumnDescription = "Y坐标")] public string PosY { get; set; } /// /// 机器人方向(范围 -180~360度) /// [SugarColumn(ColumnName = "robotDir", ColumnDescription = "机器人方向")] public string RobotDir { get; set; } /// /// 机器人Ip /// [SugarColumn(ColumnName = "robotIp", ColumnDescription = "机器人Ip")] public string RobotIp { get; set; } /// /// 机器人速度 /// [SugarColumn(ColumnName = "speed", ColumnDescription = "机器人速度")] public string Speed { get; set; } /// /// 机器人状态 /// [SugarColumn(ColumnName = "status", ColumnDescription = "机器人状态")] public string Status { get; set; } /// /// 详细状态信息,关联agv状态码查询 /// [SugarColumn(ColumnName = "status_detail", ColumnDescription = "详细状态信息")] public string StatusDetail { get; set; } /// /// 是否暂停 0-否 1-是 /// [SugarColumn(ColumnName = "stop", ColumnDescription = "是否暂停")] public string Stop { get; set; } /// /// 时间 /// [SugarColumn(ColumnName = "timestamp", ColumnDescription = "时间")] public DateTime? Timestamp { get; set; } } }