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/TExamineScoreMapper.java | 63 +++++++++++++++++++++++++++++++ 1 files changed, 63 insertions(+), 0 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/mapper/TExamineScoreMapper.java b/ycl-server/src/main/java/com/ycl/platform/mapper/TExamineScoreMapper.java new file mode 100644 index 0000000..007f23c --- /dev/null +++ b/ycl-server/src/main/java/com/ycl/platform/mapper/TExamineScoreMapper.java @@ -0,0 +1,63 @@ +package com.ycl.platform.mapper; + +import com.ycl.platform.domain.entity.TExamineScore; +import com.ycl.platform.domain.vo.TExamineScoreVO; + +import java.util.List; + +/** + * 鑰冩牳璁″垎Mapper鎺ュ彛 + * + * @author ruoyi + * @date 2024-03-13 + */ +public interface TExamineScoreMapper +{ + /** + * 鏌ヨ鑰冩牳璁″垎 + * + * @param id 鑰冩牳璁″垎涓婚敭 + * @return 鑰冩牳璁″垎 + */ + public TExamineScore selectTExamineScoreById(Long id); + + /** + * 鏌ヨ鑰冩牳璁″垎鍒楄〃 + * + * @param tExamineScore 鑰冩牳璁″垎 + * @return 鑰冩牳璁″垎闆嗗悎 + */ + public List<TExamineScoreVO> selectTExamineScoreList(TExamineScore tExamineScore); + + /** + * 鏂板鑰冩牳璁″垎 + * + * @param tExamineScore 鑰冩牳璁″垎 + * @return 缁撴灉 + */ + public int insertTExamineScore(TExamineScore tExamineScore); + + /** + * 淇敼鑰冩牳璁″垎 + * + * @param tExamineScore 鑰冩牳璁″垎 + * @return 缁撴灉 + */ + public int updateTExamineScore(TExamineScore tExamineScore); + + /** + * 鍒犻櫎鑰冩牳璁″垎 + * + * @param id 鑰冩牳璁″垎涓婚敭 + * @return 缁撴灉 + */ + public int deleteTExamineScoreById(Long id); + + /** + * 鎵归噺鍒犻櫎鑰冩牳璁″垎 + * + * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎 + * @return 缁撴灉 + */ + public int deleteTExamineScoreByIds(Long[] ids); +} -- Gitblit v1.8.0