chen_xi
2022-09-22 51d249af0744585a8f137acfb52bd49ecca30c35
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
package com.moral.constant;
 
import java.util.HashMap;
import java.util.Map;
 
/**
 * 通用常量信息
 */
public class SensorContrasts {
    /*
     * 被删除标识
     * */
    public static final String a34004 = "PM2_5";
 
    /*
     * 未删除标识
     * */
    public static final String a34002 = "PM10";
 
    /*
     * 后台系统验证码配置列名
     * */
    public static final String a05024 = "O3";
 
    /*
     * web端系统验证码配置列名
     * */
    public static final String a21005 = "CO";
 
    /*
     * 后台系统验证码列对应的值
     * */
    public static final String a21026 = "SO2";
 
    /*
     * web端验证码配置列名
     * */
    public static final String a21004 = "NO2";
 
    public static Map<String, String> sensorContrastMap;
 
    static {
        sensorContrastMap = new HashMap<>();
        sensorContrastMap.put("a34004","PM2_5");
        sensorContrastMap.put("a34002","PM10");
        sensorContrastMap.put("a05024","O3");
        sensorContrastMap.put("a21004","NO2");
        sensorContrastMap.put("a21005","CO");
        sensorContrastMap.put("a21026","SO2");
    }
 
}