ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareModel.Entity.AGV
{
    public class AgvCancelTask
    {
        /// <summary>
        /// 请求编号,唯一码
        /// </summary>
        public string reqCode { get; set; }
        /// <summary>
        /// 请求时间戳
        /// </summary>
        public string reqTime { get; set; }
        /// <summary>
        /// 客户端编号,如 PDA,HCWMS 等。
        /// </summary>
        public string clientCode { get; set; }
        /// <summary>
        /// 令 牌 号 , 由 调 度 系 统 颁 发
        /// </summary>
        public string tokenCode { get; set; }
        /// <summary>
        /// 取消类型
        /// </summary>
        public string forceCancel { get; set; }
        /// <summary>
        /// 回库区域编号
        /// </summary>
        public string matterArea { get; set; }
        /// <summary>
        /// 取消该 AGV 正在执行的任务单
        /// </summary>
        public string agvCode { get; set; }
        /// <summary>
        /// 任务单编号, 取消该任务单
        /// </summary>
        public string taskCode { get; set; }
    }
}