From 93af1c6ffb9ae0e894689ad3a37b548e57d54cff Mon Sep 17 00:00:00 2001 From: linzhijie <19970921lzj> Date: 星期四, 11 三月 2021 19:10:07 +0800 Subject: [PATCH] 有注释的测评系统业务代码 --- src/main/java/com/ots/project/exam/viewmodel/ExamPaperSubmitVM.java | 42 +++++++++++++++++++++++++++++++++--------- 1 files changed, 33 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/ots/project/exam/viewmodel/ExamPaperSubmitVM.java b/src/main/java/com/ots/project/exam/viewmodel/ExamPaperSubmitVM.java index b1beced..5364040 100644 --- a/src/main/java/com/ots/project/exam/viewmodel/ExamPaperSubmitVM.java +++ b/src/main/java/com/ots/project/exam/viewmodel/ExamPaperSubmitVM.java @@ -1,37 +1,61 @@ package com.ots.project.exam.viewmodel; + import com.ots.project.exam.domain.TExamReport; import com.ots.project.exam.dto.InterfaceContent; import lombok.Getter; import lombok.Setter; + import java.util.List; + + @Setter @Getter public class ExamPaperSubmitVM { + private Integer id; + private Integer questionId; + private Integer doTime; + private Integer verifyStatus; + private Integer finish; - + + // 澶ч鍔犲皬棰� private List<ExamPaperTitleItemVM> titleItems; - + + // 灏忛鐨勯�夐」鍐呭 private List<ExamPaperSubmitItemVM> answerItems; + private List<Integer> questionOrder; + private List<List<String>> optionOrder; - + + // 姝e湪绛旂殑娈� private Integer partOrder; - + + // 姝e湪绛旈鐨勫簭鍙� private String itemOrder; - + + // 绛旈鎻愪氦鐨勮瑷� private String langType; - + + // 鏄惁璋冪敤娉板浗鍥㈤槦 private String isCallTain; - + + // 瀛樿皟鐢ㄦ嘲鍥藉洟闃熸帴鍙g殑鍐呭 private List<InterfaceContent> interfaceContentList; - + + // 宸茬粡瀛樺湪鐨勬姤琛ㄨ褰� List<TExamReport> tExamReportList; + private Integer remainTime; + private boolean submitClick = false; - + + // 鏄惁鏄噸鏂扮敓鎴愭姤鍛婄殑 private boolean isRecallThaiInterface = false; + + } -- Gitblit v1.9.1