太湖英才
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
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.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("taihu_talent")
|
||||
public class TaihuTalent implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer userId;
|
||||
|
||||
//姓名
|
||||
private String name;
|
||||
|
||||
//职称
|
||||
private String title;
|
||||
|
||||
//头像
|
||||
private String icon;
|
||||
|
||||
//地域
|
||||
private String region;
|
||||
|
||||
//介绍
|
||||
private String introduce;
|
||||
|
||||
//业务专长
|
||||
private String specialty;
|
||||
|
||||
//出诊信息
|
||||
private String clinic;
|
||||
|
||||
//预约
|
||||
private String reservation;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user