Commit 08ffe6b1 authored by suhuiguang's avatar suhuiguang

1.物理区域

parent c417a858
...@@ -183,7 +183,7 @@ public class AreaServiceImpl extends ServiceImpl<AreaMapper, Area> implements IA ...@@ -183,7 +183,7 @@ public class AreaServiceImpl extends ServiceImpl<AreaMapper, Area> implements IA
list = treeMenuList(getAreaTreeListVo(), id); list = treeMenuList(getAreaTreeListVo(), id);
List<Long> parentIdSet = list.stream().map(vo -> vo.getId()).collect(Collectors.toList()); List<Long> parentIdSet = list.stream().map(vo -> vo.getId()).collect(Collectors.toList());
if (StringUtil.isNotEmpty(area.getBizOrgCode())) { if (StringUtil.isNotEmpty(area.getBizOrgCode())) {
queryWrapper.like(Area::getBizOrgCode, area.getBizOrgCode()); queryWrapper.likeRight(Area::getBizOrgCode, area.getBizOrgCode());
} }
queryWrapper.eq(Area::getIsDelete, false); queryWrapper.eq(Area::getIsDelete, false);
if (parentIdSet.size() > 0) { if (parentIdSet.size() > 0) {
......
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