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";
|
}
|