using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Application { public class AgvCallbackInput { /// /// 请求编号 /// public string reqCode { get; set; } /// /// 请求时间戳 /// public string reqTime { get; set; } /// /// 地码X坐标 /// public string cooX { get; set; } /// /// 地码Y坐标 /// public string cooY { get; set; } /// /// 当前位置编号 /// public string currentPositionCode { get; set; } /// /// 自定义字段 /// public string data { get; set; } /// /// 地图编号 /// public string mapCode { get; set; } /// /// 地码编号 /// public string mapDataCode { get; set; } /// /// 方法名 /// public string method { get; set; } /// /// 货架编号 /// public string podCode { get; set; } /// /// 上下左右 /// public string podDir { get; set; } /// /// agv编号 /// public string robotCode { get; set; } /// /// 当前任务单号 /// public string taskCode { get; set; } /// /// 工作位 /// public string wbCode { get; set; } } }