车间能级提升-智能设备管理系统
朱桂飞
2025-01-09 3e8f7f239bedae0b4f04a1ac6bd443ba6298f73c
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
package org.dromara.common.translation.constant;
 
/**
 * 翻译常量
 *
 * @author Lion Li
 */
public interface TransConstant {
 
    /**
     * 用户id转账号
     */
    String USER_ID_TO_NAME = "user_id_to_name";
 
    /**
     * 用户id转用户名称
     */
    String USER_ID_TO_NICKNAME = "user_id_to_nickname";
 
    /**
     * 部门id转名称
     */
    String DEPT_ID_TO_NAME = "dept_id_to_name";
 
    /**
     * 字典type转label
     */
    String DICT_TYPE_TO_LABEL = "dict_type_to_label";
 
    /**
     * ossId转url
     */
    String OSS_ID_TO_URL = "oss_id_to_url";
 
    /**
     * 设备名称id转名称
     */
    String EQU_YPE_ID_TO_NAME = "equ_type_id_to_name";
}