From b23f8cd1438c2b3c6f7e334502de619ffbb7fdc7 Mon Sep 17 00:00:00 2001
From: linzhijie <19970921lzj>
Date: 星期三, 24 三月 2021 19:24:01 +0800
Subject: [PATCH] 报告邮件标题跟随语言变换

---
 src/main/java/com/ots/project/exam/service/ITExamPaperService.java |   82 ++++++++++++++++++++++++++++++++++++-----
 1 files changed, 72 insertions(+), 10 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 f929947..7f08c1c 100644
--- a/src/main/java/com/ots/project/exam/service/ITExamPaperService.java
+++ b/src/main/java/com/ots/project/exam/service/ITExamPaperService.java
@@ -1,36 +1,98 @@
 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