wangxinhui
2025-11-30 f2b85c65234e0dcdd3fcce4dafbe16933b7f1b48
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
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.Agv
{
    public class AgvUpdateDTO
{
        /// <summary>
        /// 任务编号
        /// </summary>
        public string MissionCode { get; set; }
        /// <summary>
        /// 作业类型
        /// </summary>
        public string ViewBoardType { get; set; }
        /// <summary>
        /// 当前所在槽位
        /// </summary>
        public string SlotCode { get; set; }
        /// <summary>
        /// 执行当前任务的机器人 id
        /// </summary>
        public string RobotId { get; set; }
        /// <summary>
        /// 容器编号
        /// </summary>
        public string ContainerCode { get; set; }
        /// <summary>
        /// 容器当前位置
        /// </summary>
        public string CurrentPosition { get; set; }
        /// <summary>
        ///作业当前状态<br/>
        ///开始移动:MOVE_BEGIN<br/>
        ///料 箱 取 料 完 成:PICKER_RECEIVE<br/>
        ///料 箱 下 料 完 成:PICKER_SEND<br/>
        ///等待放行:WAITFEEDBACK<br/>
        ///任务完成:COMPLETED<br/>
        ///任务取消完成:CANCELED<br/>
        ///告警:WARNING<br/>
        /// </summary>
        public string MissionStatus { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public string Message { get; set; }
    }
}