dengjunjie
2026-02-26 933e1bd3517936e1d5488d84827a830cf1310a83
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
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    /// <summary>
    /// 凯乐士任务状态上报
    /// </summary>
    public class GALAXISUpdateTaskStatus
    {
        /// <summary>
        /// 任务编号
        /// </summary>
        public string taskId { get; set; }
        /// <summary>
        /// 执行任务库位
        /// </summary>
        public string siteCode { get; set; }
        /// <summary>
        /// 容器编号
        /// </summary>
        public string rackNo { get; set; }
        /// <summary>
        /// 设备编号
        /// </summary>
        public int vid { get; set; }
        /// <summary>
        /// 测量高度,
        /// 0:货物高度小于最矮传感器
        ///1:货物高度大于最矮传感器小于最高传感器
        ///2:货物高度大于最高传感器
        /// </summary>
        public int height { get; set; }
        /// <summary>
        /// 请求时间戳
        /// </summary>
        public string reportTime { get; set; }
        /// <summary>
        /// 任务状态<br></br>
        /// 0任务完成,<br></br>
        /// 1起点无货,<br></br>
        /// 2终点有货,<br></br>
        /// 3任务编号重复,<br></br>
        /// 4取货完成,<br></br>
        /// 5RCS接收任务操作数据库异常,<br></br>
        /// 6任务类型有误,<br></br>
        /// 7参数有误,<br></br>
        /// 8RCS未知异常,<br></br>
        /// 9正在执行或已执行完毕的任务不能取消,<br></br>
        /// 10开始执行任务,<br></br>
        /// 13任务废止,不再执行<br></br>
        /// </summary>
        public int taskStatus { get; set; }
        /// <summary>
        /// 请求结果描述
        /// </summary>
        public string returnInfo { get; set; }
    }
}