123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- package com.ruoyi.system.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import java.util.Date;
- /**
- * 老师档案信息对象 teacher_info
- *
- * @author ruoyi
- * @date 2023-07-24
- */
- public class TeacherInfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** ID */
- private Long id;
- /** 老师id(user表id)) */
- @Excel(name = "老师id(user表id))")
- private Long teacherId;
- /** 姓名 */
- @Excel(name = "姓名")
- private String name;
- /** 性别(1:男,2:女) */
- @Excel(name = "性别(1:男,2:女)")
- private String sex;
- /** 年龄 */
- @Excel(name = "年龄")
- private String age;
- /** 联系方式 */
- @Excel(name = "联系方式")
- private String phone;
- /** 职称 */
- @Excel(name = "职称")
- private String professional;
- /** 身份证号 */
- @Excel(name = "身份证号")
- private String idCard;
- /** 身高 */
- @Excel(name = "身高")
- private String height;
- /** 体重 */
- @Excel(name = "体重")
- private String weight;
- /** 血型 */
- @Excel(name = "血型")
- private String bloodType;
- /** 政治面貌 */
- @Excel(name = "政治面貌")
- private String politicalStatus;
- /** 毕业证明照(地址) */
- @Excel(name = "毕业证明照(地址)")
- private String graduationPhoto;
- /** 毕业证书照(地址) */
- @Excel(name = "学位证书照(地址)")
- private String degreePhoto;
- /** 教资证明照(地址) */
- @Excel(name = "教资证明照(地址)")
- private String teachingPhoto;
- /** 职称证明照(地址) */
- @Excel(name = "职称证明照(地址)")
- private String professionalPhoto;
- /** 证件照(地址) */
- @Excel(name = "证件照(地址)")
- private String identificationPhoto;
- /** 门禁照(地址) */
- @Excel(name = "门禁照(地址)")
- private String entrancePermit;
- /** 居住地址 */
- @Excel(name = "居住地址")
- private String address;
- /** 入职时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- private Date onBoardTime;
- /** 参加工作时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- private Date jobTime;
- /** 学校id */
- private Long schoolId;
- public Long getSchoolId() {
- return schoolId;
- }
- public void setSchoolId(Long schoolId) {
- this.schoolId = schoolId;
- }
- public Date getOnBoardTime() {
- return onBoardTime;
- }
- public Date getJobTime() {
- return jobTime;
- }
- public void setOnBoardTime(Date onBoardTime) {
- this.onBoardTime = onBoardTime;
- }
- public void setJobTime(Date jobTime) {
- this.jobTime = jobTime;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setTeacherId(Long teacherId)
- {
- this.teacherId = teacherId;
- }
- public Long getTeacherId()
- {
- return teacherId;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public String getName()
- {
- return name;
- }
- public void setSex(String sex)
- {
- this.sex = sex;
- }
- public String getSex()
- {
- return sex;
- }
- public void setAge(String age)
- {
- this.age = age;
- }
- public String getAge()
- {
- return age;
- }
- public void setPhone(String phone)
- {
- this.phone = phone;
- }
- public String getPhone()
- {
- return phone;
- }
- public void setProfessional(String professional)
- {
- this.professional = professional;
- }
- public String getProfessional()
- {
- return professional;
- }
- public void setIdCard(String idCard)
- {
- this.idCard = idCard;
- }
- public String getIdCard()
- {
- return idCard;
- }
- public void setHeight(String height)
- {
- this.height = height;
- }
- public String getHeight()
- {
- return height;
- }
- public void setWeight(String weight)
- {
- this.weight = weight;
- }
- public String getWeight()
- {
- return weight;
- }
- public void setBloodType(String bloodType)
- {
- this.bloodType = bloodType;
- }
- public String getBloodType()
- {
- return bloodType;
- }
- public void setPoliticalStatus(String politicalStatus)
- {
- this.politicalStatus = politicalStatus;
- }
- public String getPoliticalStatus()
- {
- return politicalStatus;
- }
- public void setGraduationPhoto(String graduationPhoto)
- {
- this.graduationPhoto = graduationPhoto;
- }
- public String getGraduationPhoto()
- {
- return graduationPhoto;
- }
- public void setDegreePhoto(String degreePhoto)
- {
- this.degreePhoto = degreePhoto;
- }
- public String getDegreePhoto()
- {
- return degreePhoto;
- }
- public void setTeachingPhoto(String teachingPhoto)
- {
- this.teachingPhoto = teachingPhoto;
- }
- public String getTeachingPhoto()
- {
- return teachingPhoto;
- }
- public void setProfessionalPhoto(String professionalPhoto)
- {
- this.professionalPhoto = professionalPhoto;
- }
- public String getProfessionalPhoto()
- {
- return professionalPhoto;
- }
- public void setIdentificationPhoto(String identificationPhoto)
- {
- this.identificationPhoto = identificationPhoto;
- }
- public String getIdentificationPhoto()
- {
- return identificationPhoto;
- }
- public void setEntrancePermit(String entrancePermit)
- {
- this.entrancePermit = entrancePermit;
- }
- public String getEntrancePermit()
- {
- return entrancePermit;
- }
- public void setAddress(String address)
- {
- this.address = address;
- }
- public String getAddress()
- {
- return address;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("teacherId", getTeacherId())
- .append("name", getName())
- .append("sex", getSex())
- .append("age", getAge())
- .append("phone", getPhone())
- .append("professional", getProfessional())
- .append("idCard", getIdCard())
- .append("height", getHeight())
- .append("weight", getWeight())
- .append("bloodType", getBloodType())
- .append("politicalStatus", getPoliticalStatus())
- .append("graduationPhoto", getGraduationPhoto())
- .append("degreePhoto", getDegreePhoto())
- .append("teachingPhoto", getTeachingPhoto())
- .append("professionalPhoto", getProfessionalPhoto())
- .append("identificationPhoto", getIdentificationPhoto())
- .append("entrancePermit", getEntrancePermit())
- .append("address", getAddress())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|