package com.mindskip.xzs.viewmodel.student.exam;
|
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* @version 2.2.0
|
* @description: 智能训练
|
* Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
|
* @date 2021 /9/7 9:45
|
*/
|
@Data
|
public class ExamPaperBuildVM {
|
/**
|
* 学科
|
*/
|
@NotNull
|
private Integer subjectId;
|
|
/**
|
* 单选
|
*/
|
@NotNull
|
private Integer singleChoice;
|
|
|
/**
|
* 多选
|
*/
|
@NotNull
|
private Integer multipleChoice;
|
|
/**
|
* 填空
|
*/
|
@NotNull
|
private Integer trueFalse;
|
|
/**
|
* 难度
|
*/
|
@NotNull
|
private Integer difficult;
|
}
|