From 345eab350d41d832c040d63011a178689696b650 Mon Sep 17 00:00:00 2001
From: linzhijie <19970921lzj>
Date: 星期日, 28 三月 2021 12:03:55 +0800
Subject: [PATCH] 更改短信默认模板

---
 src/main/java/com/ots/project/exam/service/ExamPaperQuestionCustomerAnswerService.java |   24 ++++++++++++++++++++++--
 1 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/service/ExamPaperQuestionCustomerAnswerService.java b/src/main/java/com/ots/project/exam/service/ExamPaperQuestionCustomerAnswerService.java
index 5694e85..e11544c 100644
--- a/src/main/java/com/ots/project/exam/service/ExamPaperQuestionCustomerAnswerService.java
+++ b/src/main/java/com/ots/project/exam/service/ExamPaperQuestionCustomerAnswerService.java
@@ -1,18 +1,38 @@
 package com.ots.project.exam.service;
+
 import com.github.pagehelper.PageInfo;
 import com.ots.project.exam.domain.ExamPaperQuestionCustomerAnswer;
 import com.ots.project.exam.dto.ExamPaperAnswerUpdate;
 import com.ots.project.exam.viewmodel.ExamPaperSubmitItemVM;
 import com.ots.project.exam.viewmodel.QuestionPageStudentRequestVM;
+
 import java.util.List;
+
 public interface ExamPaperQuestionCustomerAnswerService extends BaseService<ExamPaperQuestionCustomerAnswer> {
+
     PageInfo<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVM requestVM);
+
     List<ExamPaperQuestionCustomerAnswer> selectListByPaperAnswerId(Integer id);
-    
+
+    /**
+     * 璇曞嵎鎻愪氦绛旀鍏ュ簱
+     *
+     * @param examPaperQuestionCustomerAnswers List<ExamPaperQuestionCustomerAnswer>
+     */
     void insertList(List<ExamPaperQuestionCustomerAnswer> examPaperQuestionCustomerAnswers);
-    
+
+    /**
+     * 璇曞嵎闂绛旈淇℃伅杞垚ViewModel 浼犵粰鍓嶅彴
+     *
+     * @param qa ExamPaperQuestionCustomerAnswer
+     * @return ExamPaperSubmitItemVM
+     */
     ExamPaperSubmitItemVM examPaperQuestionCustomerAnswerToVM(ExamPaperQuestionCustomerAnswer qa);
+
+
     Integer selectAllCount();
+
     List<Integer> selectMothCount();
+
     int updateScore(List<ExamPaperAnswerUpdate> examPaperAnswerUpdates);
 }

--
Gitblit v1.9.1