Commit 15247f054435055d864feaaf7fd561342223c422
1 parent
bbb988a419
Exists in
master
and in
6 other branches
逗号改括号
Showing 1 changed file with 3 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
15247f0
... | ... | @@ -2074,7 +2074,9 @@ |
2074 | 2074 | // param2.put("uids", ids); |
2075 | 2075 | param2.put("uids", userIds); |
2076 | 2076 | if(CollectionUtils.isEmpty(userIds)) { |
2077 | - return RespBuilder.buildSuccess(new PageResult(0, (Integer) param.get("currentPage2"), (Integer) param.get("pageSize2"), null)); | |
2077 | + PageResult pg = new PageResult(0, (Integer) param.get("currentPage2"), (Integer) param.get("pageSize2"), null); | |
2078 | + pg.setLastPage(0); | |
2079 | + return RespBuilder.buildSuccess(pg); | |
2078 | 2080 | } |
2079 | 2081 | List<Map<String,Object>> userSendInfo = couponMapper.findUserSendInfoByUids(param2); |
2080 | 2082 | System.out.println(userIds); |