From 32b4f6188f32e6c08e813efa98a25d94eacdc0c6 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期二, 02 四月 2024 09:32:29 +0800
Subject: [PATCH] Revert "新考核"

---
 ycl-server/src/main/java/com/ycl/platform/mapper/TCheckPublishMapper.java |   62 +++++++++++++++++++++++++++++++
 1 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/TCheckPublishMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/TCheckPublishMapper.java
new file mode 100644
index 0000000..3e3bac1
--- /dev/null
+++ b/ycl-server/src/main/java/com/ycl/platform/mapper/TCheckPublishMapper.java
@@ -0,0 +1,62 @@
+package com.ycl.platform.mapper;
+
+import com.ycl.platform.domain.entity.TCheckPublish;
+
+import java.util.List;
+
+/**
+ * 鑰冩牳鍙戝竷Mapper鎺ュ彛
+ * 
+ * @author ruoyi
+ * @date 2024-03-07
+ */
+public interface TCheckPublishMapper 
+{
+    /**
+     * 鏌ヨ鑰冩牳鍙戝竷
+     * 
+     * @param id 鑰冩牳鍙戝竷涓婚敭
+     * @return 鑰冩牳鍙戝竷
+     */
+    public TCheckPublish selectTCheckPublishById(Long id);
+
+    /**
+     * 鏌ヨ鑰冩牳鍙戝竷鍒楄〃
+     * 
+     * @param tCheckPublish 鑰冩牳鍙戝竷
+     * @return 鑰冩牳鍙戝竷闆嗗悎
+     */
+    public List<TCheckPublish> selectTCheckPublishList(TCheckPublish tCheckPublish);
+
+    /**
+     * 鏂板鑰冩牳鍙戝竷
+     * 
+     * @param tCheckPublish 鑰冩牳鍙戝竷
+     * @return 缁撴灉
+     */
+    public int insertTCheckPublish(TCheckPublish tCheckPublish);
+
+    /**
+     * 淇敼鑰冩牳鍙戝竷
+     * 
+     * @param tCheckPublish 鑰冩牳鍙戝竷
+     * @return 缁撴灉
+     */
+    public int updateTCheckPublish(TCheckPublish tCheckPublish);
+
+    /**
+     * 鍒犻櫎鑰冩牳鍙戝竷
+     * 
+     * @param id 鑰冩牳鍙戝竷涓婚敭
+     * @return 缁撴灉
+     */
+    public int deleteTCheckPublishById(Long id);
+
+    /**
+     * 鎵归噺鍒犻櫎鑰冩牳鍙戝竷
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎
+     * @return 缁撴灉
+     */
+    public int deleteTCheckPublishByIds(Long[] ids);
+}

--
Gitblit v1.8.0