diff --git a/core/core-frontend/src/locales/en.ts b/core/core-frontend/src/locales/en.ts index a353f90980..308cfd290f 100644 --- a/core/core-frontend/src/locales/en.ts +++ b/core/core-frontend/src/locales/en.ts @@ -774,6 +774,7 @@ export default { than_end_time: ', Cannot be greater than the end time:', variable: 'Variable', variable_value: 'Variable value', + variable_desc: 'Describe', enter_a_value: 'Please enter a value', contact_the_administrator: 'If the execution fails, please contact the administrator', data_import_successful: 'Import data successfully', diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts index 4185e97b3f..1246365c0f 100644 --- a/core/core-frontend/src/locales/tw.ts +++ b/core/core-frontend/src/locales/tw.ts @@ -747,6 +747,7 @@ export default { than_end_time: ',不能大於結束時間:', variable: '變數', variable_value: '變數值', + variable_desc: '描述', enter_a_value: '請輸入數值', contact_the_administrator: '執行失敗請聯絡管理員', data_import_successful: '導入資料成功', diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts index a96eb2fdd4..a0b52fbf11 100644 --- a/core/core-frontend/src/locales/zh-CN.ts +++ b/core/core-frontend/src/locales/zh-CN.ts @@ -648,6 +648,7 @@ export default { add_variable_value: '添加变量值', search_variable_value: '搜索变量值', variable_value: '变量值', + variable_desc: '描述', set_variable_value: '设置变量值', the_minimum_value: '请输入最小值', the_maximum_value: '请输入最大值', diff --git a/sdk/api/api-permissions/src/main/java/io/dataease/api/permissions/variable/dto/SysVariableValueDto.java b/sdk/api/api-permissions/src/main/java/io/dataease/api/permissions/variable/dto/SysVariableValueDto.java index 3dbe0bc695..125313ff4a 100644 --- a/sdk/api/api-permissions/src/main/java/io/dataease/api/permissions/variable/dto/SysVariableValueDto.java +++ b/sdk/api/api-permissions/src/main/java/io/dataease/api/permissions/variable/dto/SysVariableValueDto.java @@ -11,6 +11,7 @@ public class SysVariableValueDto { @JsonSerialize(using = ToStringSerializer.class) private Long sysVariableId; private String value; + private String valueDesc; private String begin; private String end; }