You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
639 B
31 lines
639 B
/***********************************************************
|
|
* @Description : 考试详情的实体类
|
|
* @author : 梁山广(Laing Shan Guang)
|
|
* @date : 2019-06-24 08:14
|
|
* @email : liangshanguang2@gmail.com
|
|
***********************************************************/
|
|
package lsgwr.exam.vo;
|
|
|
|
import lsgwr.exam.entity.Exam;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ExamDetailVo {
|
|
//试的基本信息对象
|
|
|
|
private Exam exam;
|
|
|
|
//单选题的id数组
|
|
|
|
private String[] radioIds;
|
|
|
|
//多选题的id数组
|
|
|
|
private String[] checkIds;
|
|
|
|
//判断题的id数组
|
|
|
|
private String[] judgeIds;
|
|
|
|
}
|