管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-25 445acb921e3886b2c2012e5343c4e4c7ad5bc6e9
src/main/java/com/lf/server/controller/show/ExportController.java
@@ -59,11 +59,11 @@
                return fail("用户未登录", null);
            }
            int count = downloadService.selectCountForExport(ue.getCreateUser(), name);
            int count = downloadService.selectCountForUser(ue.getCreateUser(), 2, name);
            if (count == 0) {
                return success(0, null);
            }
            List<DownloadEntity> rs = downloadService.selectByPageForExport(ue.getCreateUser(), name, pageSize, pageSize * (pageIndex - 1));
            List<DownloadEntity> rs = downloadService.selectByPageForUser(ue.getCreateUser(), 2, name, pageSize, pageSize * (pageIndex - 1));
            return success(count, rs);
        } catch (Exception ex) {