班级管理
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
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.List;
|
||||
|
||||
@Data
|
||||
@TableName("class_model")
|
||||
public class ClassModel {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private String title;
|
||||
|
||||
private Integer directorId;
|
||||
|
||||
private Integer ddirectorId;
|
||||
|
||||
private String type;//班类型 0小班 1联合班 2精英班
|
||||
|
||||
@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;
|
||||
}
|
||||
Reference in New Issue
Block a user