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/impl/TaskExamCustomerAnswerImpl.java |   10 ----------
 1 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/src/main/java/com/ots/project/exam/service/impl/TaskExamCustomerAnswerImpl.java b/src/main/java/com/ots/project/exam/service/impl/TaskExamCustomerAnswerImpl.java
index bd010af..ddb28b7 100644
--- a/src/main/java/com/ots/project/exam/service/impl/TaskExamCustomerAnswerImpl.java
+++ b/src/main/java/com/ots/project/exam/service/impl/TaskExamCustomerAnswerImpl.java
@@ -1,5 +1,4 @@
 package com.ots.project.exam.service.impl;
-
 import com.ots.project.exam.domain.*;
 import com.ots.project.exam.dto.TaskItemAnswerObject;
 import com.ots.project.exam.mapper.TaskExamCustomerAnswerMapper;
@@ -8,27 +7,21 @@
 import com.ots.project.tool.exam.JsonUtil;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
-
 import java.util.Arrays;
 import java.util.Date;
 import java.util.List;
-
 @Service
 public class TaskExamCustomerAnswerImpl extends BaseServiceImpl<TaskExamCustomerAnswer> implements TaskExamCustomerAnswerService {
-
     @Autowired
     private TaskExamCustomerAnswerMapper taskExamCustomerAnswerMapper;
-
     @Autowired
     private ITTextContentService textContentService;
-
     @Autowired
     public TaskExamCustomerAnswerImpl(TaskExamCustomerAnswerMapper taskExamCustomerAnswerMapper, ITTextContentService textContentService) {
         super(taskExamCustomerAnswerMapper);
         this.taskExamCustomerAnswerMapper = taskExamCustomerAnswerMapper;
         this.textContentService = textContentService;
     }
-
     @Override
     public void insertOrUpdate(ExamPaper examPaper, ExamPaperAnswer examPaperAnswer, Date now) {
         Integer taskId = examPaper.getTaskExamId();
@@ -52,7 +45,6 @@
             textContentService.updateTTextContent(textContent);
         }
     }
-
     @Override
     public void insertOrUpdate(TExamPaper examPaper, ExamPaperAnswer examPaperAnswer, Date now) {
         Integer taskId = examPaper.getTaskExamId().intValue();
@@ -76,12 +68,10 @@
             textContentService.updateTTextContent(textContent);
         }
     }
-
     @Override
     public TaskExamCustomerAnswer selectByTUid(Integer tid, Integer uid) {
         return taskExamCustomerAnswerMapper.getByTUid(tid, uid);
     }
-
     @Override
     public List<TaskExamCustomerAnswer> selectByTUid(List<Integer> taskIds, Integer uid) {
         return taskExamCustomerAnswerMapper.selectByTUid(taskIds, uid);

--
Gitblit v1.9.1