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); }