1
huangxiaoqiang
3 天以前 5a15fa73d5f6a39917013871a65eb11a8c013391
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
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>
    /// 配置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>
        /// 打印程序IP
        /// </summary>
        public const string PrintIPAddress = "PrintIPAddress";
 
        /// <summary>
        /// ERP IP
        /// </summary>
        public const string ERPIPAddress = "ERPIPAddress";
 
        /// <summary>
        /// 请求WCS任务
        /// </summary>
        public const string ReceiveTask = "ReceiveTask";
 
        /// <summary>
        /// 任务完成
        /// </summary>
        public const string CompleteTask = "CompleteTask";
 
        /// <summary>
        /// ERP调拨出库
        /// </summary>
        public const string Allocate = "Allocate";
 
        /// <summary>
        /// 杂发
        /// </summary>
        public const string MixedSend = "MixedSend";
 
        /// <summary>
        /// 生产领料
        /// </summary>
        public const string MaterialRequisition = "MaterialRequisition";
 
        /// <summary>
        /// 打印订单
        /// </summary>
        public const string PrintInboundOrder = "PrintInboundOrder";
 
        /// <summary>
        /// 打印托盘条码
        /// </summary>
        public const string PrintPalletCodes = "PrintPalletCodes";
    }
}