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
| package com.hbbh.adapter.enums;
|
|
| import java.util.HashMap;
| import java.util.Map;
|
| /**
| * 表
| *
| * 注意:严格顺序要求
| *
| * @author
| */
| public enum TableEnum {
|
| SMS("SMS", 11),
| DLZ_PLC("DLZ_PLC", 10),
| DJW_PLC("DJW_PLC", 9),
| BDS_PLC("BDS_PLC", 8),
| KTNZ2C_PLC("KTNZ2C_PLC", 7),
| //TODO:
| ;
|
| private final String tableName;
| private final int id;
|
|
| TableEnum(String tableName, int id) {
| this.tableName = tableName;
| this.id = id;
| }
|
| public String getTableName() {
| return tableName;
| }
|
| public int getId() {
| return id;
| }
|
| private static Map<String, TableEnum> maps = new HashMap<>();
|
| static {
| for (TableEnum item : TableEnum.values()) {
| maps.put(item.getTableName(), item);
| }
| }
|
| public static TableEnum getByType(final String tableName) {
| if (tableName == null) {
| return null;
| }
| return maps.get(tableName);
| }
|
| }
|
|