fix: 系统变量】系统变量值能否增加一个别名 #16713

This commit is contained in:
taojinlong
2025-09-01 15:55:53 +08:00
committed by taojinlong
parent 9ca0de195e
commit 33c40756a6
4 changed files with 4 additions and 0 deletions

View File

@@ -787,6 +787,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',

View File

@@ -760,6 +760,7 @@ export default {
than_end_time: '不能大於結束時間',
variable: '變數',
variable_value: '變數值',
variable_desc: '描述',
enter_a_value: '請輸入數值',
contact_the_administrator: '執行失敗請聯絡管理員',
data_import_successful: '導入資料成功',

View File

@@ -661,6 +661,7 @@ export default {
add_variable_value: '添加变量值',
search_variable_value: '搜索变量值',
variable_value: '变量值',
variable_desc: '描述',
set_variable_value: '设置变量值',
the_minimum_value: '请输入最小值',
the_maximum_value: '请输入最大值',

View File

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