From 3849263b31a16a91ff08acaa42786ecfde76f33c Mon Sep 17 00:00:00 2001
From: zhangback <zhangback@163.com>
Date: 星期四, 27 十一月 2025 20:18:08 +0800
Subject: [PATCH] 提交

---
 tms/src/main/java/com/ruoyi/tms/mapper/TmsMessageNotifyMapper.java |   87 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 87 insertions(+), 0 deletions(-)

diff --git a/tms/src/main/java/com/ruoyi/tms/mapper/TmsMessageNotifyMapper.java b/tms/src/main/java/com/ruoyi/tms/mapper/TmsMessageNotifyMapper.java
new file mode 100644
index 0000000..597ac67
--- /dev/null
+++ b/tms/src/main/java/com/ruoyi/tms/mapper/TmsMessageNotifyMapper.java
@@ -0,0 +1,87 @@
+package com.ruoyi.tms.mapper;
+
+import java.util.List;
+import com.ruoyi.tms.domain.TmsMessageNotify;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+
+/**
+ * 娑堟伅閫氱煡Mapper鎺ュ彛
+ * 
+ * @author ruoyi
+ * @date 2025-11-26
+ */
+public interface TmsMessageNotifyMapper  extends BaseMapper<TmsMessageNotify>
+{
+    /**
+     * 鏌ヨ娑堟伅閫氱煡
+     * 
+     * @param id 娑堟伅閫氱煡ID
+     * @return 娑堟伅閫氱煡
+     */
+    public TmsMessageNotify selectTmsMessageNotifyById(Integer id);
+
+    /**
+     * 鏌ヨ娑堟伅閫氱煡 璁板綍鏁�
+     *
+     * @param tmsMessageNotify 娑堟伅閫氱煡
+     * @return 娑堟伅閫氱煡闆嗗悎
+     */
+    public int selectTmsMessageNotifyCount(TmsMessageNotify tmsMessageNotify);
+
+    /**
+     * 鏌ヨ娑堟伅閫氱煡鍒楄〃
+     * 
+     * @param tmsMessageNotify 娑堟伅閫氱煡
+     * @return 娑堟伅閫氱煡闆嗗悎
+     */
+    public List<TmsMessageNotify> selectTmsMessageNotifyList(TmsMessageNotify tmsMessageNotify);
+
+    /**
+     * 鏂板娑堟伅閫氱煡
+     * 
+     * @param tmsMessageNotify 娑堟伅閫氱煡
+     * @return 缁撴灉
+     */
+    public int insertTmsMessageNotify(TmsMessageNotify tmsMessageNotify);
+
+    /**
+     * 鏂板娑堟伅閫氱煡[鎵归噺]
+     *
+     * @param tmsMessageNotifys 娑堟伅閫氱煡
+     * @return 缁撴灉
+     */
+    public int insertTmsMessageNotifyBatch(List<TmsMessageNotify> tmsMessageNotifys);
+
+    /**
+     * 淇敼娑堟伅閫氱煡
+     * 
+     * @param tmsMessageNotify 娑堟伅閫氱煡
+     * @return 缁撴灉
+     */
+    public int updateTmsMessageNotify(TmsMessageNotify tmsMessageNotify);
+
+    /**
+     * 淇敼娑堟伅閫氱煡[鎵归噺]
+     *
+     * @param tmsMessageNotifys 娑堟伅閫氱煡
+     * @return 缁撴灉
+     */
+    public int updateTmsMessageNotifyBatch(List<TmsMessageNotify> tmsMessageNotifys);
+
+    /**
+     * 鍒犻櫎娑堟伅閫氱煡
+     * 
+     * @param id 娑堟伅閫氱煡ID
+     * @return 缁撴灉
+     */
+    public int deleteTmsMessageNotifyById(Integer id);
+
+    /**
+     * 鎵归噺鍒犻櫎娑堟伅閫氱煡
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+     * @return 缁撴灉
+     */
+    public int deleteTmsMessageNotifyByIds(Integer[] ids);
+}

--
Gitblit v1.8.0