1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-06 07:21:24 +08:00

modify the function of paging the noticeType

This commit is contained in:
cccccyb
2023-05-28 18:21:46 +08:00
parent e6e9ce9965
commit 10d3d0e4e8
12 changed files with 194 additions and 86 deletions

View File

@@ -23,13 +23,15 @@ public interface INoticeService extends IService<Notice> {
Boolean deleteById(Long nid);
Boolean deleteBatchByIds(List<Long> noticeIds);
Boolean updateNotice(Notice notice);
Boolean updateNoticeTop(Notice notice);
Boolean addNotice(Notice notice);
IPage<Notice> selectPageAllNotice(IPage<?> page);
IPage<Notice> selectPageAllNotice(IPage<Notice> page);
IPage<Notice> selectPageByCond(IPage<?> page, String title, String type, String startTime, String endTime);
IPage<Notice> selectPageByCond(IPage<Notice> page, String title, String type, String startTime, String endTime);
}