【8.1.8】【dict】更新dict查询方法

dev-8.1.9
stylefeng 2024-06-26 15:40:51 +08:00
parent 1b189d5eba
commit 0b3835c266
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ public class DictServiceImpl extends ServiceImpl<DictMapper, SysDict> implements
// 遍历所有字典,把字典信息装配到字典类型信息里
for (SysDict sysDict : dictList) {
Long dictTypeId = sysDict.getDictTypeId();
if (ObjectUtil.isNotEmpty(dictTypeId)) {
if (ObjectUtil.isEmpty(dictTypeId)) {
continue;
}
DictTreeDto dictTreeDto = dictTypeMap.get(dictTypeId);