| | |
| | | package com.ycl.jxkg.domain.exam; |
| | | |
| | | import com.ycl.jxkg.domain.question.QuestionItemObject; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class PaperQuestion { |
| | | //关联题目id |
| | | private Integer questionId; |
| | | //排序 |
| | | private Integer order; |
| | | private Integer id; |
| | | |
| | | private List<QuestionItemObject> items; |
| | | |
| | | private Integer difficult; |
| | | |
| | | private String title; |
| | | //题目分数 |
| | | private BigDecimal score; |
| | | |
| | | private String correct; |
| | | |
| | | private String analyze; |
| | | |
| | | //语音题文件名 |
| | | private String audioFile; |
| | | //语音题原始名 |
| | | private String originalFile; |
| | | } |