bug修改

This commit is contained in:
2023-05-22 20:23:06 +08:00
parent 8e57a6cb20
commit f840ab9774
4 changed files with 34 additions and 23 deletions

View File

@@ -321,7 +321,7 @@ public class DeptServiceImpl extends ServiceImpl<DeptMapper, Dept> implements ID
if (deptVo.getType() == 0) {
deptVo.setName(deptVo.getAreaName());
}
}).collect(Collectors.toList());
}).sorted(Comparator.comparing(DeptTreeVO::getSort)).collect(Collectors.toList());
}
/**