【7.2.2】【app】更新应用列表返回排序

pull/29/head
fengshuonan 2022-04-06 22:23:12 +08:00
parent a640a9ea39
commit a9e09f6b12
1 changed files with 3 additions and 0 deletions

View File

@ -311,6 +311,9 @@ public class SysAppServiceImpl extends ServiceImpl<SysAppMapper, SysApp> impleme
// 根据激活状态
queryWrapper.eq(ObjectUtil.isNotEmpty(sysAppRequest.getStatusFlag()), SysApp::getActiveFlag, sysAppRequest.getActiveFlag());
// 排序
queryWrapper.orderByAsc(SysApp::getAppSort);
return queryWrapper;
}