From 71a2a8245db4c04be3f96a9eb9b47931d3130650 Mon Sep 17 00:00:00 2001 From: zlyx <1242874891@qq.com> Date: 星期三, 18 一月 2023 17:09:43 +0800 Subject: [PATCH] refactor 重构 common, framework 包结构, 参照 cloud 版本拆分子模块 ; update 更新模块包名 ; delete 移除 sms 模块, oss 模块, framework 模块 (并入 common 模块) ; --- ruoyi-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java index 4ede9bc..4e69042 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysNoticeService.java @@ -1,7 +1,7 @@ package com.ruoyi.system.service; -import com.ruoyi.common.core.page.IServicePlus; -import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.common.mybatis.core.page.PageQuery; +import com.ruoyi.common.mybatis.core.page.TableDataInfo; import com.ruoyi.system.domain.SysNotice; import java.util.List; @@ -9,12 +9,12 @@ /** * 鍏憡 鏈嶅姟灞� * - * @author ruoyi + * @author Lion Li */ -public interface ISysNoticeService extends IServicePlus<SysNotice> { +public interface ISysNoticeService { - TableDataInfo<SysNotice> selectPageNoticeList(SysNotice notice); + TableDataInfo<SysNotice> selectPageNoticeList(SysNotice notice, PageQuery pageQuery); /** * 鏌ヨ鍏憡淇℃伅 @@ -22,7 +22,7 @@ * @param noticeId 鍏憡ID * @return 鍏憡淇℃伅 */ - public SysNotice selectNoticeById(Long noticeId); + SysNotice selectNoticeById(Long noticeId); /** * 鏌ヨ鍏憡鍒楄〃 @@ -30,7 +30,7 @@ * @param notice 鍏憡淇℃伅 * @return 鍏憡闆嗗悎 */ - public List<SysNotice> selectNoticeList(SysNotice notice); + List<SysNotice> selectNoticeList(SysNotice notice); /** * 鏂板鍏憡 @@ -38,7 +38,7 @@ * @param notice 鍏憡淇℃伅 * @return 缁撴灉 */ - public int insertNotice(SysNotice notice); + int insertNotice(SysNotice notice); /** * 淇敼鍏憡 @@ -46,7 +46,7 @@ * @param notice 鍏憡淇℃伅 * @return 缁撴灉 */ - public int updateNotice(SysNotice notice); + int updateNotice(SysNotice notice); /** * 鍒犻櫎鍏憡淇℃伅 @@ -54,7 +54,7 @@ * @param noticeId 鍏憡ID * @return 缁撴灉 */ - public int deleteNoticeById(Long noticeId); + int deleteNoticeById(Long noticeId); /** * 鎵归噺鍒犻櫎鍏憡淇℃伅 @@ -62,5 +62,5 @@ * @param noticeIds 闇�瑕佸垹闄ょ殑鍏憡ID * @return 缁撴灉 */ - public int deleteNoticeByIds(Long[] noticeIds); + int deleteNoticeByIds(Long[] noticeIds); } -- Gitblit v1.9.3