From a0adf52a33e382d070936fc4d3d58a27bc419690 Mon Sep 17 00:00:00 2001
From: leomon <2233021400@qq.com>
Date: Tue, 20 May 2025 20:18:06 +0800
Subject: [PATCH] 消息中心业务数据库表简化

---
 oying-system/src/main/java/com/oying/modules/message/service/MessageSystemService.java |   56 ++++++++++++++++++++++++++++----------------------------
 1 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/message/service/MessageSystemService.java b/oying-system/src/main/java/com/oying/modules/message/service/MessageSystemService.java
index 13838d4..713df86 100644
--- a/oying-system/src/main/java/com/oying/modules/message/service/MessageSystemService.java
+++ b/oying-system/src/main/java/com/oying/modules/message/service/MessageSystemService.java
@@ -11,50 +11,50 @@
 import com.oying.utils.PageResult;
 
 /**
-* @description 服务接口
-* @author 李萌
-* @date 2025-05-14
-**/
+ * @description 服务接口
+ * @author 李萌
+ * @date 2025-05-20
+ **/
 public interface MessageSystemService extends IService<MessageSystem> {
 
     /**
-    * 查询数据分页
-    * @param criteria 条件
-    * @param page 分页参数
-    * @return PageResult
-    */
+     * 查询数据分页
+     * @param criteria 条件
+     * @param page 分页参数
+     * @return PageResult
+     */
     PageResult<MessageSystem> queryAll(MessageSystemQueryCriteria criteria, Page<Object> page);
 
     /**
-    * 查询所有数据不分页
-    * @param criteria 条件参数
-    * @return List<MessageSystemDto>
-    */
+     * 查询所有数据不分页
+     * @param criteria 条件参数
+     * @return List<MessageSystemDto>
+     */
     List<MessageSystem> queryAll(MessageSystemQueryCriteria criteria);
 
     /**
-    * 创建
-    * @param resources /
-    */
+     * 创建
+     * @param resources /
+     */
     void create(MessageSystem resources);
 
     /**
-    * 编辑
-    * @param resources /
-    */
+     * 编辑
+     * @param resources /
+     */
     void update(MessageSystem resources);
 
     /**
-    * 多选删除
-    * @param ids /
-    */
-    void deleteAll(List<Long> ids);
+     * 多选删除
+     * @param ids /
+     */
+    void deleteAll(List<Integer> ids);
 
     /**
-    * 导出数据
-    * @param all 待导出的数据
-    * @param response /
-    * @throws IOException /
-    */
+     * 导出数据
+     * @param all 待导出的数据
+     * @param response /
+     * @throws IOException /
+     */
     void download(List<MessageSystem> all, HttpServletResponse response) throws IOException;
 }

--
Gitblit v1.9.3