管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-27 9513fe9cc622eca5659cf055da1a1f315f80b555
src/main/java/com/lf/server/controller/data/MetaController.java
@@ -369,11 +369,11 @@
                return fail("用户未登录", null);
            }
            int count = downloadService.selectCountForUser(ue.getCreateUser(), 3, name);
            int count = downloadService.selectCountForUser(ue.getId(), 3, name);
            if (count == 0) {
                return success(0, null);
            }
            List<DownloadEntity> rs = downloadService.selectByPageForUser(ue.getCreateUser(), 3, name, pageSize, pageSize * (pageIndex - 1));
            List<DownloadEntity> rs = downloadService.selectByPageForUser(ue.getId(), 3, name, pageSize, pageSize * (pageIndex - 1));
            return success(count, rs);
        } catch (Exception ex) {