|
|
@ -35,7 +35,9 @@ public class MatrixUserService { |
|
|
|
MatrixApp app = appMapper.queryByCode(query.appCode); |
|
|
|
LambdaQueryWrapper<MatrixUser> wrapper = new LambdaQueryWrapper<>(); |
|
|
|
wrapper.eq(MatrixUser::getAppId, app.getId()); |
|
|
|
|
|
|
|
if (query.userId != null) { |
|
|
|
wrapper.eq(MatrixUser::getId, query.userId); |
|
|
|
} |
|
|
|
int page = query.current; |
|
|
|
int pageSize = query.pageSize; |
|
|
|
wrapper.orderByDesc(MatrixUser::getId); |
|
|
|