代码调整

This commit is contained in:
2022-12-15 10:19:43 +08:00
parent 730c08098b
commit e76273e592
3 changed files with 4 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
t1.name name,
t1.code code,
t1.sort sort,
t1.value,
t2.id typeId,
t2.name typeName,
t2.code typeCode

View File

@@ -104,6 +104,7 @@ public class DictTypeServiceImpl extends ServiceImpl<DictTypeMapper, DictType> i
simpleDTO.setId(dictDataCache.getId());
simpleDTO.setName(dictDataCache.getName());
simpleDTO.setSort(dictDataCache.getSort());
simpleDTO.setValue(dictDataCache.getValue());
return simpleDTO;
}).collect(Collectors.toList());