33 lines
641 B
Java
33 lines
641 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
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;
|
|
|
|
@Data
|
|
@TableName("course_to_medicine")
|
|
public class CourseToMedicine {
|
|
@TableId
|
|
private Integer id;
|
|
|
|
private Integer courseId;
|
|
|
|
private Integer medicalId;
|
|
|
|
private Integer sort;
|
|
|
|
//0隐藏1初级2高级
|
|
private Integer level;
|
|
|
|
//0隐藏1必修2选修
|
|
private Integer selective;
|
|
|
|
private Date createTime;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
}
|