课程太湖云医关联
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
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;
|
||||
|
||||
@Data
|
||||
@TableName("course_to_talent")
|
||||
public class CourseToTalent {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer courseId;
|
||||
|
||||
private Integer talentId;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
@TableField(exist = false)
|
||||
private CourseEntity courseEntity;
|
||||
@TableField(exist = false)
|
||||
private TaihuTalent taihuTalent;
|
||||
|
||||
}
|
||||
@@ -45,6 +45,9 @@ public class TaihuTalent implements Serializable {
|
||||
//预约
|
||||
private String reservation;
|
||||
|
||||
//0太湖云医1名医
|
||||
private int type;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
@TableLogic
|
||||
|
||||
Reference in New Issue
Block a user