|
@@ -55,7 +55,10 @@ public class NoticeWebsitLogic {
|
|
|
//1.组装查询条件
|
|
|
zfireParam = FieldUtils.supplyParam(zfireParam, NoticeWebsitVO.class,adminUser);
|
|
|
|
|
|
- IPage<NoticeWebsitVO> websitDispatchVOIPage = noticeRecordMapper.listNoticeWebsit(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam, adminCompanyIds);
|
|
|
+
|
|
|
+ String status = adminUser.getType().equals(0)?"SEND":"";
|
|
|
+
|
|
|
+ IPage<NoticeWebsitVO> websitDispatchVOIPage = noticeRecordMapper.listNoticeWebsit(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam, adminCompanyIds,status);
|
|
|
|
|
|
return websitDispatchVOIPage;
|
|
|
}
|
|
@@ -135,7 +138,9 @@ public class NoticeWebsitLogic {
|
|
|
//1.组装查询条件
|
|
|
zfireParam = FieldUtils.supplyParam(zfireParam, NoticeWebsitRecordVO.class,adminUser);
|
|
|
|
|
|
- IPage<NoticeWebsitRecordVO> noticeWebsitRecordVOIPage = noticeRecordMapper.listWebsit(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam, adminCompanyIds);
|
|
|
+ String status = adminUser.getType().equals(0)?"SEND":"";
|
|
|
+
|
|
|
+ IPage<NoticeWebsitRecordVO> noticeWebsitRecordVOIPage = noticeRecordMapper.listWebsit(new Page(zfireParam.getPageNum(), zfireParam.getPageSize()), zfireParam, adminCompanyIds,status);
|
|
|
|
|
|
return noticeWebsitRecordVOIPage;
|
|
|
}
|