刘磊
2025-06-10 87b6fc65bc3b6cce03af04758db82236d29bc7e5
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
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>
        /// 参数名称
        /// </summary>
        public const string CONFIG_SYS_Parameters = "SYS_Parameters";
 
        public const string CONFIG_SYS_AGVIPAddress = "SYS_AGVIPAddress";
    }
 
    /// <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>
        /// AGV IP
        /// </summary>
        public const string AGVIPAddress = "AGVIPAddress";
    }
}