pull/56/head
shao1121353141 2023-09-25 19:05:48 +08:00
parent 73034be019
commit 5cd5513f2e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class AppRepositoryCustomizedImpl implements AppRepositoryCustomized {
builder.append(" AND app.name_ like '%").append(name).append("%'");
}
//分组id
if (null!=groupId) {
if (Objects.nonNull(groupId)) {
builder.append(" AND ass.group_id = ").append(groupId);
}
//@formatter:on