From 3a8e1524dcf0eeb610d38123d5f0a3ef838379cd Mon Sep 17 00:00:00 2001
From: linzhijie <19970921lzj>
Date: 星期一, 12 四月 2021 15:44:53 +0800
Subject: [PATCH] Merge branch '20210406-maqv2' into 20210412-youhua

---
 src/main/java/com/ots/project/exam/mapper/TQuestionMapper.java |   63 +++----------------------------
 1 files changed, 6 insertions(+), 57 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/mapper/TQuestionMapper.java b/src/main/java/com/ots/project/exam/mapper/TQuestionMapper.java
index 9bce59b..3bbfa1b 100644
--- a/src/main/java/com/ots/project/exam/mapper/TQuestionMapper.java
+++ b/src/main/java/com/ots/project/exam/mapper/TQuestionMapper.java
@@ -1,78 +1,27 @@
 package com.ots.project.exam.mapper;
-
 import com.ots.project.exam.domain.TQuestion;
 import org.apache.ibatis.annotations.Param;
-
 import java.util.List;
 
-/**
- * 棰樼洰鍒楄〃Mapper鎺ュ彛
- *
- * @author Shawn
- * @date 2019-11-20
- */
 public interface TQuestionMapper {
-    /**
-     * 鏌ヨ棰樼洰鍒楄〃
-     *
-     * @param id 棰樼洰鍒楄〃ID
-     * @return 棰樼洰鍒楄〃
-     */
+    
     TQuestion selectTQuestionById(Long id);
-
     List<TQuestion> selectTQuestionByPermanentId(String permanentId);
-
     List<TQuestion> selectTQuestionByIds(List<Long> ids);
-
-    /**
-     * 鏌ヨ棰樼洰鍒楄〃鍒楄〃
-     *
-     * @param tQuestion 棰樼洰鍒楄〃
-     * @return 棰樼洰鍒楄〃闆嗗悎
-     */
+    
     List<TQuestion> selectTQuestionList(TQuestion tQuestion);
-
     List<TQuestion> selectTQuestionsForProductAddQuestion(TQuestion tQuestion);
-
     List<TQuestion> selectTQuestionScore(Integer[] ids);
-
-    /**
-     * 鏂板棰樼洰鍒楄〃
-     *
-     * @param tQuestion 棰樼洰鍒楄〃
-     * @return 缁撴灉
-     */
+    
     int insertTQuestion(TQuestion tQuestion);
-
-    /**
-     * 淇敼棰樼洰鍒楄〃
-     *
-     * @param tQuestion 棰樼洰鍒楄〃
-     * @return 缁撴灉
-     */
+    
     int updateTQuestion(TQuestion tQuestion);
-
     int updateTQuestionByPermanentId(TQuestion tQuestion);
-
-    /**
-     * 鍒犻櫎棰樼洰鍒楄〃
-     *
-     * @param id 棰樼洰鍒楄〃ID
-     * @return 缁撴灉
-     */
+    
     int deleteTQuestionById(Long id);
-
-    /**
-     * 鎵归噺鍒犻櫎棰樼洰鍒楄〃
-     *
-     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
-     * @return 缁撴灉
-     */
+    
     int deleteTQuestionByIds(String[] ids);
-
     int updateQuetionByDelete(String[] ids);
-
     List<TQuestion> selectByIds(@Param("ids") List<Integer> ids);
-
     List<TQuestion> selectTQuestionByPermanentIds( List<String> permanentIds);
 }

--
Gitblit v1.9.1