huanghongfeng
2 天以前 bce2cc310d462ffbe56ee3d9f3d9368abf481aad
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Core.Const
{
    /// <summary>
    /// 分类常量
    /// </summary>
    public class CateGoryConst
    {
        /// <summary>
        /// IP接口地址
        /// </summary>
        public const string CONFIG_WCS_IPAddress = "WCS_IPAddress";
 
        public const string CONFIG_MES_IPAddress = "MES_IPAddress";
    }
 
    /// <summary>
    /// 配置Key常量
    /// </summary>
    public class SysConfigConst
    {
        /// <summary>
        /// 下发WCS任务
        /// </summary>
        public const string WCSReceiveTask = "ReceiveTask";
 
        /// <summary>
        /// 移库任务完成
        /// </summary>
        public const string MESTransferCompletionFeedback = "MESTransferCompletionFeedback";
        public const string MESTaskFeedback = "MESTaskFeedback";
 
    }
}