yangys
2025-09-09 fc3ae614a4c5a2a7cdb9029ecfc4372eb1c28b18
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
package org.springblade.mdm.commons.contants;
 
public class ParamConstants {
    public static final String NETWORK_TYPE_KEY = "networkType";
 
    /**
     * 重复派工天数验证间隔天数
     */
    public static String TASK_DUPLICATE_CHECK_DAYS= "taskDuplicateCheckDays";
    /**
     * 涉密网
     */
    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";
 
    /**
     * 系统参数,机构中车间的key
     */
    public static final String WORKSHOP_DICT_KEY = "workshopDictKey";
    /**
     * 跟目录的id
     */
    public static String ROOT_DEPT_ID= "rootDeptId";
    /**
     * 重复派工天数验证间隔天数
     */
    public static String TASK_EXPIRE_DAYS = "taskExpireDays";
}