ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysDictData.java
@@ -29,7 +29,8 @@ /** 字典标签 */ @Excel(name = "字典标签") private String dictLabel; /** 字典标签国际化标识 */ private String dictLabelI18n; /** 字典键值 */ @Excel(name = "字典键值") private String dictValue; @@ -84,6 +85,14 @@ this.dictLabel = dictLabel; } public String getDictLabelI18n() { return dictLabelI18n; } public void setDictLabelI18n(String dictLabelI18n) { this.dictLabelI18n = dictLabelI18n; } @NotBlank(message = "字典键值不能为空") @Size(min = 0, max = 100, message = "字典键值长度不能超过100个字符") public String getDictValue()