schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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<AGVRetModel_report> report { get; set; }
    }
 
    public class AGVRetModel_alarms
    {
        public List<AGVRetModel_alarms_errors> 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; }
 
        /// <summary>
        /// 机器人可接单状态,true为可接单,false为不可接单
        /// </summary>
        public bool dispatchable { get; set; }
 
        /// <summary>
        /// 是否正在执行用户下发的任务
        /// </summary>
        public bool procBusiness { get; set; }
 
        /// <summary>
        /// 机器人连接状态,0表示断连,1表示连接上
        /// </summary>
        public int connection_status { get; set; }
    }
}