| | |
| | | package com.ots.project.exam.viewmodel; |
| | | |
| | | import com.ots.project.exam.dto.QuestionReport; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.List; |
| | | |
| | | @Getter |
| | | @Setter |
| | | public class ExamPaperSubmitItemVM { |
| | | private Integer id; |
| | | @NotNull |
| | | private Integer questionId; |
| | | |
| | | private Boolean doRight; |
| | | |
| | | private String content; |
| | | |
| | | private String lastContent; |
| | | |
| | | private Integer itemOrder; |
| | | |
| | | private List<String> contentArray; |
| | | |
| | | private String score; |
| | | |
| | | private String questionScore; |
| | | |
| | | private String startTime; |
| | | |
| | | private String endTime; |
| | | |
| | | |
| | | // 题目报告 人格文具的题目报告 |
| | | private QuestionReport questionReport; |
| | | } |