package com.mindskip.xzs.domain;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 随机试卷配置表
|
*
|
* @author gonghl
|
*/
|
@TableName(value = "t_exam_templates_config")
|
@Data
|
public class ExamTemplatesConfig implements Serializable {
|
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 单选题
|
*/
|
private Integer radioNum;
|
|
/**
|
* 多选题
|
*/
|
private Integer checkNum;
|
|
/**
|
* 判断题
|
*/
|
private Integer judgingNum;
|
|
private Integer createUser;
|
|
@OrderBy
|
private Date createTime;
|
|
@TableLogic
|
private Integer deleted;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|