refactor: 优化字典选中效果

This commit is contained in:
2023-09-18 20:07:41 +08:00
parent 8a02401a24
commit 3fd0c08b80
2 changed files with 40 additions and 17 deletions

View File

@@ -57,4 +57,9 @@ public class DictVO extends BaseVO {
*/
@Schema(description = "是否为系统内置数据", example = "true")
private Boolean isSystem;
@Override
public Boolean getDisabled() {
return this.getIsSystem();
}
}