package com.ycl.jxkg.domain.vo;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* 阅卷数据
|
*
|
* @author:xp
|
* @date:2024/6/14 11:38
|
*/
|
@Data
|
public class MarkPaperVO {
|
|
private Integer examId;
|
|
/** 考试名称 */
|
private String examName;
|
|
/** 考试试卷名称 */
|
private String examPaperName;
|
|
/** 试卷考试时间 */
|
private Integer suggestTime;
|
|
/** 应考人数 */
|
private Integer shouldJoinNum;
|
|
/** 参考人数 */
|
private Integer joinNum;
|
|
/** 缺考人数 */
|
private Integer missJoinNum;
|
|
/** 参考但是未完成考试(未完成指的是网页关闭,没有时间到自动提交或者自主提交) */
|
private Integer joinButNotFinishNum;
|
|
/** 学生的考试情况 */
|
private List<StudentExamInfoVO> studentExamInfoVOList;
|
|
}
|