|
|
|
@ -82,6 +82,7 @@ public class SysDeptServiceImpl implements ISysDeptService {
|
|
|
|
|
lqw.eq(ObjectUtil.isNotNull(bo.getParentId()), SysDept::getParentId, bo.getParentId());
|
|
|
|
|
lqw.like(StringUtils.isNotBlank(bo.getDeptName()), SysDept::getDeptName, bo.getDeptName());
|
|
|
|
|
lqw.eq(StringUtils.isNotBlank(bo.getStatus()), SysDept::getStatus, bo.getStatus());
|
|
|
|
|
lqw.orderByAsc(SysDept::getAncestors);
|
|
|
|
|
lqw.orderByAsc(SysDept::getParentId);
|
|
|
|
|
lqw.orderByAsc(SysDept::getOrderNum);
|
|
|
|
|
lqw.orderByAsc(SysDept::getDeptId);
|
|
|
|
|