|
@@ -31,6 +31,7 @@ public class SysNoticeServiceImpl implements ISysNoticeService {
|
|
|
.like(StringUtils.isNotBlank(notice.getNoticeTitle()), SysNotice::getNoticeTitle, notice.getNoticeTitle())
|
|
|
.eq(StringUtils.isNotBlank(notice.getNoticeType()), SysNotice::getNoticeType, notice.getNoticeType())
|
|
|
.like(StringUtils.isNotBlank(notice.getCreateBy()), SysNotice::getCreateBy, notice.getCreateBy());
|
|
|
+ lqw.orderByDesc(SysNotice::getCreateTime);
|
|
|
Page<SysNotice> page = baseMapper.selectPage(pageQuery.build(), lqw);
|
|
|
return TableDataInfo.build(page);
|
|
|
}
|