package com.ycl.jxkg.domain.vo.admin.exam;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ycl.jxkg.domain.vo.PaperFixQuestionVO;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
@Data
|
public class ExamPaperMarkVO {
|
/** 考试id */
|
private Integer examId;
|
/** 考试名 */
|
private String examName;
|
/** 试卷id */
|
private Integer paperId;
|
/** 试卷类型 */
|
private Integer paperType;
|
/** 答题学生id */
|
private Integer userId;
|
/** 答题学生名 */
|
private String userName;
|
/** 做题时长 */
|
private Integer doTime;
|
/** 交卷时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date submitTime;
|
/** 得分 */
|
private String score;
|
/** 试卷总分 */
|
private String totalScore;
|
/** 多选扣分类型 */
|
private Integer deductType;
|
/** 多选扣分参数 */
|
private BigDecimal deductScore;
|
/** 题目 */
|
private List<PaperFixQuestionVO> titleItems;
|
/** 题目集合(用于前端跳转对应题目) */
|
private List<ExamPaperMarkNavbarVO> navbar;
|
}
|