|
@ -62,7 +62,7 @@ public class AdminService { |
|
|
|
|
|
|
|
|
Optional<MatrixApp> app = appList.stream().filter(x -> x.getCode().equals(param.code)).findFirst(); |
|
|
Optional<MatrixApp> app = appList.stream().filter(x -> x.getCode().equals(param.code)).findFirst(); |
|
|
if (app.isEmpty()) { |
|
|
if (app.isEmpty()) { |
|
|
throw new PaganiException(PaganiExceptionCode.ILLEGAL_REQUEST, "非法请求"); |
|
|
return null; |
|
|
} |
|
|
} |
|
|
wrapper.eq(MatrixAdvRecord::getAppId, app.get().getId()); |
|
|
wrapper.eq(MatrixAdvRecord::getAppId, app.get().getId()); |
|
|
|
|
|
|
|
|