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; } } }