using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel.Entity.AGV { public class AGVRetModel { public AGVRetModel_alarms alarms { get; set; } public List report { get; set; } } public class AGVRetModel_alarms { public List errors { get; set; } } public class AGVRetModel_alarms_errors { public string code { get; set; } public string desc { get; set; } } public class AGVRetModel_report { public string vehicle_id { get; set; } public bool is_error { get; set; } /// /// 机器人可接单状态,true为可接单,false为不可接单 /// public bool dispatchable { get; set; } /// /// 是否正在执行用户下发的任务 /// public bool procBusiness { get; set; } /// /// 机器人连接状态,0表示断连,1表示连接上 /// public int connection_status { get; set; } } }