|
|
|
@ -89,6 +89,10 @@ public class EfcodeCpNoticeServiceImpl implements IEfcodeCpNoticeService { |
|
|
|
// 只看自己发布的预告
|
|
|
|
Long userId = LoginHelper.getUserId(); |
|
|
|
lqw.eq(userId != null, EfcodeCpNotice::getCreateBy, userId); |
|
|
|
//企业统一信用代码不等于空的
|
|
|
|
lqw.eq(StringUtils.isNotBlank(bo.getBureauDeptId()),EfcodeCpNotice::getEnterpriseNumber,bo.getEnterpriseNumber()); |
|
|
|
//状态不等于空的
|
|
|
|
lqw.eq(bo.getStatus() != null, EfcodeCpNotice::getStatus, bo.getStatus()); |
|
|
|
// 过滤已删除
|
|
|
|
lqw.eq(EfcodeCpNotice::getIsDelete, 0); |
|
|
|
// 按创建时间倒序
|
|
|
|
|