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

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

diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/DefaultPublishMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/DefaultPublishMapper.java
new file mode 100644
index 0000000..c8ea8ab
--- /dev/null
+++ b/ycl-server/src/main/java/com/ycl/platform/mapper/DefaultPublishMapper.java
@@ -0,0 +1,62 @@
+package com.ycl.platform.mapper;
+
+import com.ycl.platform.domain.entity.DefaultPublish;
+
+import java.util.List;
+
+/**
+ * 鍚堝悓鑰冩牳鍙戝竷Mapper鎺ュ彛
+ * 
+ * @author ruoyi
+ * @date 2024-04-01
+ */
+public interface DefaultPublishMapper 
+{
+    /**
+     * 鏌ヨ鍚堝悓鑰冩牳鍙戝竷
+     * 
+     * @param id 鍚堝悓鑰冩牳鍙戝竷涓婚敭
+     * @return 鍚堝悓鑰冩牳鍙戝竷
+     */
+    public DefaultPublish selectDefaultPublishById(Long id);
+
+    /**
+     * 鏌ヨ鍚堝悓鑰冩牳鍙戝竷鍒楄〃
+     * 
+     * @param defaultPublish 鍚堝悓鑰冩牳鍙戝竷
+     * @return 鍚堝悓鑰冩牳鍙戝竷闆嗗悎
+     */
+    public List<DefaultPublish> selectDefaultPublishList(DefaultPublish defaultPublish);
+
+    /**
+     * 鏂板鍚堝悓鑰冩牳鍙戝竷
+     * 
+     * @param defaultPublish 鍚堝悓鑰冩牳鍙戝竷
+     * @return 缁撴灉
+     */
+    public int insertDefaultPublish(DefaultPublish defaultPublish);
+
+    /**
+     * 淇敼鍚堝悓鑰冩牳鍙戝竷
+     * 
+     * @param defaultPublish 鍚堝悓鑰冩牳鍙戝竷
+     * @return 缁撴灉
+     */
+    public int updateDefaultPublish(DefaultPublish defaultPublish);
+
+    /**
+     * 鍒犻櫎鍚堝悓鑰冩牳鍙戝竷
+     * 
+     * @param id 鍚堝悓鑰冩牳鍙戝竷涓婚敭
+     * @return 缁撴灉
+     */
+    public int deleteDefaultPublishById(Long id);
+
+    /**
+     * 鎵归噺鍒犻櫎鍚堝悓鑰冩牳鍙戝竷
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎
+     * @return 缁撴灉
+     */
+    public int deleteDefaultPublishByIds(Long[] ids);
+}

--
Gitblit v1.8.0