using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Model.domain { [SugarTable("wcs_agv_status"), TenantAttribute("mes")] public class WcsAgvStatus { /// /// 电量 /// [SugarColumn(ColumnName = "battery")] public string Battery { get; set; } /// /// 是否已被排除,被排除后不接受新任务( 1-排除, 0-正常) /// [SugarColumn(ColumnName = "exclType")] public string ExclType { get; set; } /// /// 地图编号 /// [SugarColumn(ColumnName = "mapCode")] public string MapCode { get; set; } /// /// 是否在线 /// [SugarColumn(ColumnName = "online")] public string Online { get; set; } /// /// 路线 /// [SugarColumn(ColumnName = "path")] public string Path { get; set; } /// /// 背货架的编号 /// [SugarColumn(ColumnName = "podCode")] public string PodCode { get; set; } /// /// 背货架的方向 /// [SugarColumn(ColumnName = "podDir")] public string PodDir { get; set; } /// /// X /// [SugarColumn(ColumnName = "posX")] public string PosX { get; set; } /// /// Y /// [SugarColumn(ColumnName = "posY")] public string PosY { get; set; } /// /// 机器人编号 /// [SugarColumn(ColumnName = "robotCode", IsPrimaryKey = true)] public string RobotCode { get; set; } /// /// 机器人方向 (范围 -180~360度) /// [SugarColumn(ColumnName = "robotDir")] public string RobotDir { get; set; } /// /// 机器人Ip /// [SugarColumn(ColumnName = "robotIp")] public string RobotIp { get; set; } /// /// 机器人速度 /// [SugarColumn(ColumnName = "speed")] public string Speed { get; set; } /// /// 机器人状态 /// [SugarColumn(ColumnName = "status")] public string Status { get; set; } /// /// 是否暂停 0-否 1-是 /// [SugarColumn(ColumnName = "stop")] public string Stop { get; set; } /// /// 时间 /// [SugarColumn(ColumnName = "timestamp")] public DateTime? Timestamp { get; set; } /// /// 小车名称 /// [SugarColumn(ColumnName = "agvName")] public string AgvName { get; set; } } }