From 83988febedfd129de264fb54f5202be28b6e001e Mon Sep 17 00:00:00 2001 From: luoweijian <1329394916@qq.com> Date: Wed, 22 Apr 2026 16:45:57 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/project/exam/domain/dto/ExamRecordDTO.java | 3 +++ .../domain/service/impl/AssemblePaperDomainServiceImpl.java | 1 + 2 files changed, 4 insertions(+) diff --git a/src/main/java/com/project/exam/domain/dto/ExamRecordDTO.java b/src/main/java/com/project/exam/domain/dto/ExamRecordDTO.java index 6df572a..6b9e3e2 100644 --- a/src/main/java/com/project/exam/domain/dto/ExamRecordDTO.java +++ b/src/main/java/com/project/exam/domain/dto/ExamRecordDTO.java @@ -39,6 +39,9 @@ public class ExamRecordDTO extends BaseDTO { private Long subLineId; private String subLineName; + private Integer remindTimePoint = 10; + + private String taskName; private Integer serialNumber; diff --git a/src/main/java/com/project/exam/domain/service/impl/AssemblePaperDomainServiceImpl.java b/src/main/java/com/project/exam/domain/service/impl/AssemblePaperDomainServiceImpl.java index 46057c3..c0c72d7 100644 --- a/src/main/java/com/project/exam/domain/service/impl/AssemblePaperDomainServiceImpl.java +++ b/src/main/java/com/project/exam/domain/service/impl/AssemblePaperDomainServiceImpl.java @@ -190,6 +190,7 @@ public class AssemblePaperDomainServiceImpl implements AssemblePaperDomainServic recordDTO.setAnswerSnapshotDTOList(buildPaperSnapshot(selectedQuestionList)); recordDTO = examRecordBaseService.saveDTO(recordDTO, ExamRecordEntity::new, ExamRecordDTO::new); + recordDTO.setRemindTimePoint(taskDTO.getRemindTimePoint()); return buildExamRecordDomainService.buildDTO(recordDTO); }