肖洋
2024-12-02 990054356cfd11b5c7e5f093443aa07757afc62a
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
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>
        /// 邮箱基础
        /// </summary>
        public const string CONFIG_SYS_BaseExmail = "Sys_BaseExmail";
 
        /// <summary>
        /// 邮箱配置
        /// </summary>
        public const string CONFIG_SYS_RegExmail = "Sys_RegExmail";
 
        /// <summary>
        /// IP接口地址
        /// </summary>
        public const string CONFIG_SYS_IPAddress = "SYS_IPAddress";
 
        /// <summary>
        /// MOM接口地址
        /// </summary>
        public const string SYS_MOMIPAddress = "SYS_MOMIPAddress";
    }
 
    /// <summary>
    /// 配置Key常量
    /// </summary>
    public class SysConfigConst
    {
        /// <summary>
        ///  邮箱SMTP地址
        /// </summary>
        public const string SMTP_Server = "smtpServer";
 
        /// <summary>
        ///  邮箱SMTP端口
        /// </summary>
        public const string SMTP_Port = "smtpPort";
 
        /// <summary>
        ///  邮箱SMTP账号
        /// </summary>
        public const string SMTP_User = "smtpUser";
 
        /// <summary>
        ///  邮箱SMTP密码
        /// </summary>
        public const string SMTP_Pass = "smtpPass";
 
        /// <summary>
        ///  邮箱标题
        /// </summary>
        public const string SMTP_Title = "smtpTitle";
 
        /// <summary>
        ///  邮箱内容标题
        /// </summary>
        public const string SMTP_ContentTitle = "smtpContentTitle";
        /// <summary>
        ///  邮箱内容标题
        /// </summary>
        public const string SMTP_RegUser = "smtpRegUser";
 
        /// <summary>
        /// WCS IP
        /// </summary>
        public const string WCSIPAddress = "WCSIPAddress";
 
        /// <summary>
        /// HK IP
        /// </summary>
        public const string HKIPAddress = "HKIPAddress";
 
        /// <summary>
        /// MOMIP地址
        /// </summary>
        public const string MOMBaseIP = "MOMBaseIP";
 
        /// <summary>
        /// 单电芯属性获取
        /// </summary>
        public const string CellState = "CellState";
 
        /// <summary>
        /// 整盘电芯属性获取
        /// </summary>
        public const string TrayCellsStatus = "TrayCellsStatus";
 
        /// <summary>
        /// 静置\陈化入库(整托盘)
        /// </summary>
        public const string AgingInput = "AgingInput";
 
        /// <summary>
        /// 静置\陈化出库(整托盘)
        /// </summary>
        public const string AgingOutput = "AgingOutput";
 
        /// <summary>
        /// 工艺路线申请
        /// </summary>
        public const string ProcessApply = "ProcessApply";
 
        /// <summary>
        /// 托盘单电芯解绑
        /// </summary>
        public const string TrayCellUnbind = "TrayCellUnbind";
 
        /// <summary>
        /// 整盘电芯解绑
        /// </summary>
        public const string TrayUnbind = "TrayUnbind";
 
        /// <summary>
        /// 请求WCS任务
        /// </summary>
        public const string ReceiveByWMSTask = "ReceiveByWMSTask";
 
        /// <summary>
        /// 请求WCS任务
        /// </summary>
        public const string ReceiveTask = "ReceiveTask";
 
 
        /// <summary>
        /// 请求WCS任务
        /// </summary>
        public const string GetStation = "GetStation";
    }
}