DictConst.cs
1008 Bytes
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Application.Enums
{
/// <summary>
/// 字典常量
/// </summary>
public enum DictConst
{
/// <summary>
/// 远程地址
/// </summary>
[Description("远程地址")]
RemoteUrls,
/// <summary>
/// 系统接口
/// </summary>
[Description("系统接口")]
SystemAPIs,
/// <summary>
/// S7实现时,需要使用这个配置来确定PLCIP
/// </summary>
[Description("PLC")]
PLC,
[Description("同步标记")]
CommitFlags,
[Description("权限")]
Permission,
[Description("内容日志标题")]
ContentLogTitle,
[Description("操作日志标题")]
OperationLogTitle,
[Description("消息推送")]
MessagePush,
}
}