| | |
| | | package com.ots.project.exam.viewmodel; |
| | | |
| | | import com.ots.project.exam.dto.QuestionPart; |
| | | import com.ots.project.exam.dto.QuestionReport; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 一大题,一段 |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | public class ExamPaperTitleItemVM { |
| | | |
| | | private String guide; |
| | | |
| | | private String name; |
| | | |
| | | private String description; |
| | | |
| | | |
| | | // 题目永久编号 |
| | | private String permanentId; |
| | | |
| | | |
| | | // 下标用 |
| | | private Integer questionOrder; |
| | | |
| | | |
| | | // job工作问卷的开始时间和结束时间 |
| | | private QuestionReport questionReport; |
| | | |
| | | private List<QuestionEditRequestVM> questionItems; |
| | | |
| | | private String startTime; |
| | | private String endTime; |
| | | |
| | | private List<QuestionPart> parts; |
| | | } |