|
@@ -418,8 +418,9 @@ public class NoticeServiceImpl implements NoticeService {
|
|
|
if (limitUserIdList != null && !limitUserIdList.isEmpty()) {
|
|
|
maxUserId = Collections.max(limitUserIdList);
|
|
|
nextId = maxUserId;
|
|
|
+ nextId++;
|
|
|
}
|
|
|
- nextId++;
|
|
|
+
|
|
|
resultResp.setNextId(nextId);
|
|
|
resultResp.setMaxId(maxUserId);
|
|
|
resultResp.setIdList(limitUserIdList);
|
|
@@ -439,8 +440,8 @@ public class NoticeServiceImpl implements NoticeService {
|
|
|
if (limitUserIdList != null && !limitUserIdList.isEmpty()) {
|
|
|
maxUserId = Collections.max(limitUserIdList);
|
|
|
nextId = maxUserId;
|
|
|
+ nextId++;
|
|
|
}
|
|
|
- nextId++;
|
|
|
resultResp.setMaxId(maxUserId);
|
|
|
resultResp.setNextId(nextId);
|
|
|
resultResp.setIdList(limitUserIdList);
|