yangys
2025-08-07 bc4056543fdbef38ac8bf1648df934d5bc8e5bde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.springblade.mdm.commons.contants;
 
public class ParamContants {
    public static final String NETWORK_TYPE_KEY = "networkType";
 
    /**
     * 工控网回传程序监控目录逗号分隔
     */
    public static final String PROGRAM_MONITOR_DIR_KEY = "programMonitorDir";
    /**
     * 涉密网
     */
    public static final String NETWORK_TYPE_SHEMI = "0";
    /**
     * 工控网
     */
    public static final String NETWORK_TYPE_GONGKONG = "1";
 
    /**
     * 固化有效期月数的key,在系统参数内配置
     */
    public static final String CURE_VALID_MONTH_KEY = "cureValidMonth";
}