车间能级提升-智能设备管理系统
朱桂飞
2025-02-14 9518ee94bf232c771edd97e2c6a00ba5d7f18242
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
package org.dromara.common.core.constant;
 
/**
 * 缓存的key 常量
 *
 * @author Lion Li
 */
public interface CacheConstants {
 
    /**
     * 在线用户 redis key
     */
    String ONLINE_TOKEN_KEY = "online_tokens:";
 
    /**
     * 参数管理 cache key
     */
    String SYS_CONFIG_KEY = "sys_config:";
 
    /**
     * 字典管理 cache key
     */
    String SYS_DICT_KEY = "sys_dict:";
 
    /**
     * 登录账户密码错误次数 redis key
     */
    String PWD_ERR_CNT_KEY = "pwd_err_cnt:";
 
    /**
     * 生成单号  redis key
     * code组成规则 prefix + 年月日 + 序号
     */
    String EIMS_GENERATE_CODE = "eims_generate_code:";
 
    /**
     * ***********************字典***********************
     */
 
 
    /**
     * 设备单位unit
     */
    String EIMS_EQU_UNIT = "eims_equ_unit";
 
    /**
     * 设备导入状态
     */
    String EIMS_IMPORT_STATUS = "equ_import_status";
 
}