mirror of https://gitee.com/stylefeng/roses
【8.1.8】【dict】dict tree查询方法完善
parent
93b2e09679
commit
1b189d5eba
|
@ -347,7 +347,7 @@ public class DictServiceImpl extends ServiceImpl<DictMapper, SysDict> implements
|
|||
|
||||
// 获取所有字典类型
|
||||
LambdaQueryWrapper<SysDictType> dictTypeLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
||||
dictTypeLambdaQueryWrapper.select(SysDictType::getDictTypeCode, SysDictType::getDictTypeName);
|
||||
dictTypeLambdaQueryWrapper.select(SysDictType::getDictTypeId, SysDictType::getDictTypeCode, SysDictType::getDictTypeName);
|
||||
dictTypeLambdaQueryWrapper.orderByAsc(SysDictType::getDictTypeSort);
|
||||
List<SysDictType> dictTypeList = this.dictTypeService.list(dictTypeLambdaQueryWrapper);
|
||||
|
||||
|
|
Loading…
Reference in New Issue