package com.ruoyi.hezhi.domain; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; import lombok.Getter; import lombok.Setter; import lombok.ToString; import java.util.Date; /** * 教师对象 tb_teacher * * @author ruoyi * @date 2024-09-14 */ @Getter @Setter @ToString public class TbTeacher extends BaseEntity { private static final long serialVersionUID = 1L; /** 教师id */ private Long teacherId; /** 姓名 */ @Excel(name = "姓名") private String teacherName; /** 电话 */ @Excel(name = "手机号") private String teacherPhone; /** 头像 */ @Excel(name = "头像") private String idImg; /** 全身照 */ @Excel(name = "全身照") private String wholeImg; /** 毕业院校 */ @Excel(name = "学习中心") private String collegeName; /** 职称 */ @Excel(name = "职称") private String teacherTitle; /** 主讲课程类型id */ // @Excel(name = "主讲课程类型id") private Long teacherTypeId; /** 简述 */ @Excel(name = "简述") private String prospectus; /** 经历 */ private String content; /** 删除标记(0-正常,1-删除) */ private Integer delFlag; /** 删除时间 */ private Date deleteTime; /** 删除人 */ private String deleteBy; //身份证号 private String identityCard; }