From 5e873863bc7324894c89b0a0fc77a6202c91cd64 Mon Sep 17 00:00:00 2001
From: wzp <516075396@qq.com>
Date: 星期二, 06 四月 2021 10:35:42 +0800
Subject: [PATCH] 20210406

---
 src/main/java/com/ots/project/exam/service/ITExamPaperService.java |   82 +++++------------------------------------
 1 files changed, 10 insertions(+), 72 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/service/ITExamPaperService.java b/src/main/java/com/ots/project/exam/service/ITExamPaperService.java
index 7f08c1c..f929947 100644
--- a/src/main/java/com/ots/project/exam/service/ITExamPaperService.java
+++ b/src/main/java/com/ots/project/exam/service/ITExamPaperService.java
@@ -1,98 +1,36 @@
 package com.ots.project.exam.service;
-
 import com.ots.framework.web.domain.Ztree;
 import com.ots.project.exam.domain.TExamPaper;
 import com.ots.project.exam.domain.TExamReport;
 import com.ots.project.exam.domain.TQuestion;
 import com.ots.project.exam.dto.ExamPaperTitleItem;
 import com.ots.project.system.dict.domain.DictData;
-
 import java.util.List;
 
-/**
- * 浜у搧鍖呭垪琛⊿ervice鎺ュ彛
- *
- * @author ots
- * @date 2019-11-20
- */
 public interface ITExamPaperService {
-    /**
-     * 鏌ヨ浜у搧鍖呭垪琛�
-     *
-     * @param id 浜у搧鍖呭垪琛↖D
-     * @return 浜у搧鍖呭垪琛�
-     */
+    
     TExamPaper selectTExamPaperById(Long id);
-
-    /**
-     * 鏌ヨ浜у搧鍖呭垪琛ㄥ垪琛�
-     *
-     * @param tExamPaper 浜у搧鍖呭垪琛�
-     * @return 浜у搧鍖呭垪琛ㄩ泦鍚�
-     */
+    
     List<TExamPaper> selectTExamPaperList(TExamPaper tExamPaper);
-
-    /**
-     * 鏂板浜у搧鍖呭垪琛�
-     *
-     * @param tExamPaper 浜у搧鍖呭垪琛�
-     * @return 缁撴灉
-     */
+    
     int insertTExamPaper(TExamPaper tExamPaper);
-
-    /**
-     * 淇敼浜у搧鍖呭垪琛�
-     *
-     * @param tExamPaper 浜у搧鍖呭垪琛�
-     * @return 缁撴灉
-     */
+    
     int updateTExamPaper(TExamPaper tExamPaper);
-
-    /**
-     * 鎵归噺鍒犻櫎浜у搧鍖呭垪琛�
-     *
-     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
-     * @return 缁撴灉
-     */
+    
     int deleteTExamPaperByIds(String ids);
-
-    /**
-     * 鍒犻櫎浜у搧鍖呭垪琛ㄤ俊鎭�
-     *
-     * @param id 浜у搧鍖呭垪琛↖D
-     * @return 缁撴灉
-     */
+    
     int deleteTExamPaperById(Long id);
-
-    /**
-     * 浜у搧鍖呭垪琛�
-     * @param deletes
-     * @return
-     */
+    
     List<TExamPaper> selectProdByDeleteList(List<Long> deletes);
-
-    /**
-     * 浜у搧鏍�
-     * @return
-     */
+    
     List<Ztree> selectProdTree(String testType);
-
     List<TExamPaper> getUserPapers();
-
-    /**
-     * 鏇存柊deleted鐨勭姸鎬�
-     * @return
-     */
+    
     int updateDeleted(TExamPaper tExamPaper);
-
-    // 鏇存柊鏃х殑鏁版嵁鐒跺悗鍏ュ簱
+    
     List<TQuestion> updateInsertQuestion(List<TQuestion> questionList, String multilingual);
-
     int deleteProductContent(TExamPaper tExamPaper);
-
     void recallThaiInterface(TExamReport tExamReportResult, String reportType);
-
     List<ExamPaperTitleItem> getExamPaperTitleContent(TExamPaper tExamPaper);
-
     List<DictData> getType(Long id);
 }

--
Gitblit v1.9.1