|
@@ -0,0 +1,148 @@
|
|
|
+package com.yonge.cooleshow.biz.dal.entity;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+
|
|
|
+ * 对应数据库表(teacher):
|
|
|
+ */
|
|
|
+public class Teacher {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "对应user表用户编号",required = false)
|
|
|
+ private Integer userId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "昵称",required = false)
|
|
|
+ private String nickName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学历",required = false)
|
|
|
+ private String educationBackground;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "毕业学校",required = false)
|
|
|
+ private String graduateSchool;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "技术职称",required = false)
|
|
|
+ private String technicalTitles;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "工作单位",required = false)
|
|
|
+ private String workUnit;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "专业技能(支持多个,用逗号分隔),对应科目表编号",required = false)
|
|
|
+ private String subjectId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "入职时间",required = false)
|
|
|
+ private java.util.Date entryDate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "个人介绍",required = false)
|
|
|
+ private String introduction;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "备注",required = false)
|
|
|
+ private String memo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "",required = false)
|
|
|
+ private java.util.Date updateTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "",required = false)
|
|
|
+ private java.util.Date createTime;
|
|
|
+
|
|
|
+ public void setUserId(Integer userId){
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUserId(){
|
|
|
+ return this.userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNickName(String nickName){
|
|
|
+ this.nickName = nickName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNickName(){
|
|
|
+ return this.nickName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEducationBackground(String educationBackground){
|
|
|
+ this.educationBackground = educationBackground;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEducationBackground(){
|
|
|
+ return this.educationBackground;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGraduateSchool(String graduateSchool){
|
|
|
+ this.graduateSchool = graduateSchool;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGraduateSchool(){
|
|
|
+ return this.graduateSchool;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTechnicalTitles(String technicalTitles){
|
|
|
+ this.technicalTitles = technicalTitles;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTechnicalTitles(){
|
|
|
+ return this.technicalTitles;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWorkUnit(String workUnit){
|
|
|
+ this.workUnit = workUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getWorkUnit(){
|
|
|
+ return this.workUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(String subjectId){
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectId(){
|
|
|
+ return this.subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEntryDate(java.util.Date entryDate){
|
|
|
+ this.entryDate = entryDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getEntryDate(){
|
|
|
+ return this.entryDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIntroduction(String introduction){
|
|
|
+ this.introduction = introduction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIntroduction(){
|
|
|
+ return this.introduction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMemo(String memo){
|
|
|
+ this.memo = memo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMemo(){
|
|
|
+ return this.memo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(java.util.Date updateTime){
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getUpdateTime(){
|
|
|
+ return this.updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(java.util.Date createTime){
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getCreateTime(){
|
|
|
+ return this.createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return ToStringBuilder.reflectionToString(this);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|