优化

pull/48/head
smallbun 2023-09-13 22:03:11 +08:00
parent 5845e254f4
commit 6ab9891d28
2 changed files with 5 additions and 5 deletions

View File

@ -119,7 +119,7 @@ public class AppRepositoryCustomizedImpl implements AppRepositoryCustomized {
*/
public Page<AppEntity> getAppList(AppQuery appQuery, Pageable pageable) {
//@formatter:off
StringBuilder builder = new StringBuilder("SELECT * FROM( SELECT app.* FROM app LEFT JOIN app_group_association `group` ON app.id_ = `group`.app_id) app WHERE app.is_deleted = 0");
StringBuilder builder = new StringBuilder("SELECT app.* FROM app LEFT JOIN app_group_association `group` ON app.id_ = `group`.app_id WHERE app.is_deleted=0");
//应用名称
if (StringUtils.isNoneBlank(appQuery.getName())) {