| | |
| | | package com.ycl.jxkg.domain.vo.admin.exam; |
| | | |
| | | |
| | | import com.ycl.jxkg.domain.question.TemplateQuestionDTO; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ExamResponseVO { |
| | |
| | | |
| | | private Integer questionCount; |
| | | |
| | | private Integer score; |
| | | private BigDecimal score; |
| | | |
| | | private String createTime; |
| | | |
| | |
| | | |
| | | private Integer paperType; |
| | | |
| | | private Integer frameTextContentId; |
| | | private Integer suggestTime; |
| | | |
| | | private Integer deductType; |
| | | |
| | | private BigDecimal deductTypeScore; |
| | | |
| | | private String visibility; |
| | | |
| | | private List<TemplateQuestionDTO> questionList; |
| | | } |