using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Entity.ToAGV { public class AGVRequestin { /// /// 区域号 /// public int AreaNr { get; set; } /// /// 类型 1:正在进入、2:正在离开 /// public int Type { get; set; } /// ///AGV区域状态 1:不在区域内、其他:在区域内 /// public int OUTOFArea { get; set; } } public class AGVGteaddress { /// /// 作业任务号 /// public string TASK_NO { get; set; } /// /// 货位号 /// public string address { get; set; } } }