| | |
| | | */ |
| | | |
| | | @Data |
| | | @ColumnWidth(18) |
| | | @ColumnWidth(22) |
| | | @ContentStyle(horizontalAlignment= HorizontalAlignmentEnum.CENTER) |
| | | public class ExamPaperAnswerExportVO { |
| | | |
| | | @ExcelProperty("考试名称") |
| | | private String examName; |
| | | |
| | | @ExcelProperty("试卷名称") |
| | | private String paperName; |
| | | |
| | | @ExcelProperty("姓名") |
| | | private String userName; |
| | | |
| | | @ExcelProperty("分数") |
| | | private String userScore; |
| | | private String score; |
| | | |
| | | @ExcelProperty("总分") |
| | | private String paperScore; |
| | | private String totalScore; |
| | | |
| | | @ExcelProperty("正确题数") |
| | | private Integer questionCorrect; |
| | |
| | | @ExcelProperty("题目总数") |
| | | private Integer questionCount; |
| | | |
| | | @ExcelProperty("答题时间") |
| | | @ExcelProperty("答题时间(秒)") |
| | | private String doTime; |
| | | |
| | | @ExcelProperty("提交时间") |
| | | private String createTime; |
| | | private String submitTime; |
| | | |
| | | } |