60 lines
1.4 KiB
Java
60 lines
1.4 KiB
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
@TableName("class_model")
|
|
public class ClassModel {
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
private Date createTime;
|
|
|
|
private String title;
|
|
|
|
private Integer directorId;
|
|
|
|
private Integer ddirectorId;
|
|
|
|
private String type;//班类型 0小班 1联合班 2精英班
|
|
|
|
private Integer days;//教学天数
|
|
|
|
private Integer examDays;//考试周时长
|
|
|
|
private String examProportion;//考试题型比例
|
|
|
|
private Integer examTime;//考试时长分钟
|
|
|
|
private Integer isQuestion;
|
|
private Integer questionScore;
|
|
private Integer isTask;
|
|
private Integer taskScore;
|
|
private Integer isMedicalcase;
|
|
private Integer medicalcaseScore;
|
|
private Integer isExperience;
|
|
private Integer experienceScore;
|
|
private Integer isExam;
|
|
private Integer examScore;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
|
|
@TableField(exist = false)
|
|
private Object director;
|
|
@TableField(exist = false)
|
|
private Object ddirector;
|
|
@TableField(exist = false)
|
|
private String courseIds;
|
|
@TableField(exist = false)
|
|
private List<CourseEntity> courseList;
|
|
}
|