1
huangxiaoqiang
2025-10-20 63dcb7fc55d32960f643f4040900ce9a0e33536d
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
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common
{
    public class SysConfigKeyConst
    {
        /// <summary>
        /// WMS BASE
        /// </summary>
        public const string WMSIP_BASE = "WMSIPBASE";
 
        public const string WCSIP_BASE = "WCSIPAddress";
 
        public const string AGVIP_BASE = "AGVIPBASE";
 
        /// <summary>
        /// 请求任务
        /// </summary>
        public const string RequestTask = "RequestTask";
 
        /// <summary>
        /// 请求任务货位
        /// </summary>
        public const string RequestLocation = "RequestLocation";
 
        /// <summary>
        /// 修改任务状态
        /// </summary>
 
        public const string UpdateTaskStatus = "UpdateTaskStatus";
 
        /// <summary>
        /// 任务完成
        /// </summary>
        public const string CompleteTask = "CompleteTask";
 
        /// <summary>
        /// AGV任务下发
        /// </summary>
        public const string SendAGVTask = "SendAGVTask";
 
        /// <summary>
        /// AGV任务继续
        /// </summary>
        public const string ContinueAGVTask = "ContinueAGVTask";
 
        /// <summary>
        /// 请求二段跨楼层任务
        /// </summary>
        public const string AcrossFloorTask = "AcrossFloorTask";
 
        /// <summary>
        /// 请求堆垛机出库是否需要移库
        /// </summary>
        public const string StackerIsNeedRelocation = "StackerIsNeedRelocation";
 
 
        /// <summary>
        /// 请求AGV出库是否需要移库
        /// </summary>
        public const string AGVIsNeedRelocation = "AGVIsNeedRelocation";
 
 
    }
}