【7.2.2】【system】修复查询问题

pull/29/head
fengshuonan 2022-04-14 19:04:08 +08:00
parent 1bc8e27aad
commit 1e042e3089
1 changed files with 1 additions and 2 deletions

View File

@ -268,8 +268,7 @@ public class SysAppServiceImpl extends ServiceImpl<SysAppMapper, SysApp> impleme
LambdaQueryWrapper<SysApp> wrapper = this.createWrapper(new SysAppRequest());
// 只查询应用名称和应用编码
wrapper.select(SysApp::getAppName);
wrapper.select(SysApp::getAppCode);
wrapper.select(SysApp::getAppName, SysApp::getAppCode);
// 只查询启用的应用
wrapper.eq(SysApp::getStatusFlag, StatusEnum.ENABLE.getCode());