|
@@ -363,7 +363,9 @@ public class NoticeLogic {
|
|
|
|
|
|
if (CollectionUtils.isNotEmpty(noticeWebsitRecords)) {
|
|
|
List<NoticeWebsit> noticeWebsits = noticeWebsitService.lambdaQuery().in(NoticeWebsit::getNoticeWebsitId,
|
|
|
- noticeWebsitRecords.stream().map(NoticeWebsitRecord::getNoticeWebsitId).collect(Collectors.toList()))
|
|
|
+ noticeWebsitRecords.stream().map(NoticeWebsitRecord::getNoticeWebsitId)
|
|
|
+ .collect(Collectors.toList()))
|
|
|
+ .eq(NoticeWebsit::getStatus,"SEND")
|
|
|
.list();
|
|
|
|
|
|
for (NoticeWebsit noticeWebsit : noticeWebsits) {
|