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/TTextContentMapper.java |   63 ++++---------------------------
 1 files changed, 8 insertions(+), 55 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/mapper/TTextContentMapper.java b/src/main/java/com/ots/project/exam/mapper/TTextContentMapper.java
index 420bdb1..5536664 100644
--- a/src/main/java/com/ots/project/exam/mapper/TTextContentMapper.java
+++ b/src/main/java/com/ots/project/exam/mapper/TTextContentMapper.java
@@ -1,70 +1,23 @@
 package com.ots.project.exam.mapper;
-
 import com.ots.project.exam.domain.TTextContent;
 import com.ots.project.exam.domain.TTextContentAndQuestion;
-
 import java.util.List;
 
-/**
- * 棰樼洰鐨勫唴瀹筂apper鎺ュ彛
- *
- * @author ots
- * @date 2019-11-24
- */
 public interface TTextContentMapper {
-    /**
-     * 鏌ヨ棰樼洰鐨勫唴瀹�
-     *
-     * @param id 棰樼洰鐨勫唴瀹笽D
-     * @return 棰樼洰鐨勫唴瀹�
-     */
+    
     public TTextContent selectTTextContentById(Long id);
-
-    //鐢╥n鐨勬柟寮忔煡璇�
+    
     public List<TTextContent> selectTTextContentByIds(String[] ids);
-
-    //甯uestionId鐨�
+    
     public List<TTextContentAndQuestion> selectTextContentAndQuestion(String[] ids);
-
-
-    /**
-     * 鏌ヨ棰樼洰鐨勫唴瀹瑰垪琛�
-     *
-     * @param tTextContent 棰樼洰鐨勫唴瀹�
-     * @return 棰樼洰鐨勫唴瀹归泦鍚�
-     */
+    
     public List<TTextContent> selectTTextContentList(TTextContent tTextContent);
-
-    /**
-     * 鏂板棰樼洰鐨勫唴瀹�
-     *
-     * @param tTextContent 棰樼洰鐨勫唴瀹�
-     * @return 缁撴灉
-     */
+    
     public int insertTTextContent(TTextContent tTextContent);
-
-    /**
-     * 淇敼棰樼洰鐨勫唴瀹�
-     *
-     * @param tTextContent 棰樼洰鐨勫唴瀹�
-     * @return 缁撴灉
-     */
+    
     public int updateTTextContent(TTextContent tTextContent);
-
-    /**
-     * 鍒犻櫎棰樼洰鐨勫唴瀹�
-     *
-     * @param id 棰樼洰鐨勫唴瀹笽D
-     * @return 缁撴灉
-     */
+    
     public int deleteTTextContentById(Long id);
-
-    /**
-     * 鎵归噺鍒犻櫎棰樼洰鐨勫唴瀹�
-     *
-     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
-     * @return 缁撴灉
-     */
+    
     public int deleteTTextContentByIds(String[] ids);
-
 }

--
Gitblit v1.9.1