Commit 460b4f82 authored by fangxinjiang's avatar fangxinjiang

减少原因调整

parent dda86e09
...@@ -367,8 +367,7 @@ public class SysDictItemServiceImpl extends ServiceImpl<SysDictItemMapper, SysDi ...@@ -367,8 +367,7 @@ public class SysDictItemServiceImpl extends ServiceImpl<SysDictItemMapper, SysDi
Map<String, List> resultMap = new HashMap<>(); Map<String, List> resultMap = new HashMap<>();
List<SysDictItem> allList = baseMapper.selectList(Wrappers.<SysDictItem>query().lambda() List<SysDictItem> allList = baseMapper.selectList(Wrappers.<SysDictItem>query().lambda()
.in(SysDictItem::getType,Common.initStrToList(itemTypes,CommonConstants.COMMA_STRING)) .in(SysDictItem::getType,Common.initStrToList(itemTypes,CommonConstants.COMMA_STRING))
.eq(SysDictItem::getDelFlag,CommonConstants.ZERO_STRING) .eq(SysDictItem::getDelFlag,CommonConstants.ZERO_STRING));
.eq(SysDictItem::getDisable,CommonConstants.ZERO_STRING));
if (Common.isNotNull(allList)){ if (Common.isNotNull(allList)){
List temp; List temp;
for (SysDictItem item : allList) { for (SysDictItem item : allList) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment