Commit 9d6e0300 by tc

fix bug

parent 80350fd8
......@@ -4104,7 +4104,7 @@ public class BookBizImpl implements BookBiz {
} else {
integer = integer + scanCount;
}
booksScanCounts.put(bookId, scanCount);
booksScanCounts.put(bookId, integer);
}
BookScanStatistics4OfficialAccountsReqDTO bookScanStatistics4OfficialAccountsReqDTO = new BookScanStatistics4OfficialAccountsReqDTO();
bookScanStatistics4OfficialAccountsReqDTO.setBookIds(new ArrayList<>(books));
......@@ -4130,7 +4130,7 @@ public class BookBizImpl implements BookBiz {
} else {
integer = integer + scanCount;
}
booksScanCounts.put(bookId, scanCount);
booksScanCounts.put(bookId, integer);
}
int publishCounts = 0;
int noPublishCounts = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment