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/CheckRuleMapper.java | 63 +++++-------------------------- 1 files changed, 10 insertions(+), 53 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/CheckRuleMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/CheckRuleMapper.java index f3b4016..44c50ee 100644 --- a/ycl-server/src/main/java/com/ycl/platform/mapper/CheckRuleMapper.java +++ b/ycl-server/src/main/java/com/ycl/platform/mapper/CheckRuleMapper.java @@ -1,62 +1,19 @@ package com.ycl.platform.mapper; import com.ycl.platform.domain.entity.CheckRule; - +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.ycl.platform.domain.vo.CheckRuleVO; +import com.ycl.platform.domain.form.CheckRuleForm; import java.util.List; +import org.apache.ibatis.annotations.Mapper; /** - * 鑰冩牳瑙勫垯Mapper鎺ュ彛 - * - * @author ruoyi - * @date 2024-04-01 + * 鑰冩牳瑙勫垯 Mapper 鎺ュ彛 + * + * @author xp + * @since 2024-03-06 */ -public interface CheckRuleMapper -{ - /** - * 鏌ヨ鑰冩牳瑙勫垯 - * - * @param id 鑰冩牳瑙勫垯涓婚敭 - * @return 鑰冩牳瑙勫垯 - */ - public CheckRule selectCheckRuleById(Long id); +@Mapper +public interface CheckRuleMapper extends BaseMapper<CheckRule> { - /** - * 鏌ヨ鑰冩牳瑙勫垯鍒楄〃 - * - * @param checkRule 鑰冩牳瑙勫垯 - * @return 鑰冩牳瑙勫垯闆嗗悎 - */ - public List<CheckRule> selectCheckRuleList(CheckRule checkRule); - - /** - * 鏂板鑰冩牳瑙勫垯 - * - * @param checkRule 鑰冩牳瑙勫垯 - * @return 缁撴灉 - */ - public int insertCheckRule(CheckRule checkRule); - - /** - * 淇敼鑰冩牳瑙勫垯 - * - * @param checkRule 鑰冩牳瑙勫垯 - * @return 缁撴灉 - */ - public int updateCheckRule(CheckRule checkRule); - - /** - * 鍒犻櫎鑰冩牳瑙勫垯 - * - * @param id 鑰冩牳瑙勫垯涓婚敭 - * @return 缁撴灉 - */ - public int deleteCheckRuleById(Long id); - - /** - * 鎵归噺鍒犻櫎鑰冩牳瑙勫垯 - * - * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎 - * @return 缁撴灉 - */ - public int deleteCheckRuleByIds(Long[] ids); } -- Gitblit v1.8.0