刘磊
2025-06-09 dabbcafc629ef87d11ba55ef8cc1cdc776c047d8
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common.AGVTask
{
    public class confirmToContinueTask
    {
        /// <summary>
        /// 任务id
        /// </summary>
        public string task_id { get; set; }
 
        /// <summary>
        /// 任务类型
        /// "pop":CTU出库任务 任务起点为库位号 任务终点为人工接驳点
        /// "push":CTU入库任务 任务起点为人工接驳点 任务终点为库位号
        /// </summary>
        public string task_type { get; set; }
 
        /// <summary>
        /// 搬运托盘码 可缺省
        /// </summary>
        public string carrier_sn { get; set; }
 
        /// <summary>
        /// 任务起点* 非必要参数
        /// </summary>
        public string work_begin { get; set; }
 
        /// <summary>
        /// 任务终点* 非必要参数
        /// </summary>
        public string work_end { get; set; }
 
        /// <summary>
        /// 任务状态 非必要参数 默认值-"successd"
        /// </summary>
        public string result { get; set; }
 
        /// <summary>
        /// 系统已知的异常可以返回失败原因,未知异常返回"未知失败原因",正常时返回空字符
        /// </summary>
        public string failed_reason { get; set; }
    }
}