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/service/ITSubjectService.java |   64 +++----------------------------
 1 files changed, 7 insertions(+), 57 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/service/ITSubjectService.java b/src/main/java/com/ots/project/exam/service/ITSubjectService.java
index 35fd4c6..07138cc 100644
--- a/src/main/java/com/ots/project/exam/service/ITSubjectService.java
+++ b/src/main/java/com/ots/project/exam/service/ITSubjectService.java
@@ -1,72 +1,22 @@
 package com.ots.project.exam.service;
-
 import com.ots.project.exam.domain.TSubject;
-
 import java.util.List;
 
-/**
- * 缁村害琛⊿ervice鎺ュ彛
- *
- * @author ots
- * @date 2019-12-09
- */
 public interface ITSubjectService {
-    /**
-     * 鏌ヨ缁村害琛�
-     *
-     * @param id 缁村害琛↖D
-     * @return 缁村害琛�
-     */
+    
     public TSubject selectTSubjectById(Long id);
-
     public TSubject selectTSubjectAndTLeveById(Long id);
-
-    /**
-     * 鏌ヨ缁村害琛ㄥ垪琛�
-     *
-     * @param tSubject 缁村害琛�
-     * @return 缁村害琛ㄩ泦鍚�
-     */
+    
     public List<TSubject> selectTSubjectList(TSubject tSubject);
-
     public List<TSubject> selectTSubjectList();
-
-    /**
-     * 鏂板缁村害琛�
-     *
-     * @param tSubject 缁村害琛�
-     * @return 缁撴灉
-     */
+    
     public int insertTSubject(TSubject tSubject);
-
-    /**
-     * 淇敼缁村害琛�
-     *
-     * @param tSubject 缁村害琛�
-     * @return 缁撴灉
-     */
+    
     public int updateTSubject(TSubject tSubject);
-
-    /**
-     * 鎵归噺鍒犻櫎缁村害琛�
-     *
-     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
-     * @return 缁撴灉
-     */
+    
     public int deleteTSubjectByIds(String ids);
-
-    /**
-     * 鍒犻櫎缁村害琛ㄤ俊鎭�
-     *
-     * @param id 缁村害琛↖D
-     * @return 缁撴灉
-     */
+    
     public int deleteTSubjectById(Long id);
-
-    /**
-     * 鏍规嵁鏂囦欢绫诲瀷鐨勭殑妯℃澘鑾峰緱缁村害瀵瑰簲鐨勭鐩�
-     */
-
+    
     public List<TSubject>  selectTSubjectAndTLeveByTemplateId(String questionTemplateId);
-
 }

--
Gitblit v1.9.1