using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class AGVCallBackModel { /// ///请求编号 /// public string reqCode { get; set; } /// /// 目标点位编码 /// public string currentPositionCode { get; set; } /// /// 任务ID /// public string taskCode { get; set; } /// /// 取放料箱类型:1.取料箱;2.放料箱 /// public string action { get; set; } /// /// 货架编号 /// public string podCode { get; set; } } }