1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.common.translation.constant;
|
| /**
| * 翻译常量
| *
| * @author Lion Li
| */
| public interface TransConstant {
|
| /**
| * 用户名翻译
| */
| String USER_ID_TO_NAME = "userIdToName";
|
| /**
| * 字典值翻译
| */
| String DICT_TYPE_TO_LABEL = "dictTypeToLabel";
|
| String OSS_ID_TO_URL = "ossIdToUrl";
|
| }
|
|