📄 teacherbean.java
字号:
public class TeacherBean{
public String name;
public int age;
public String position;//职称
public String lastDegree;
public String headship;//职务
public String studyDirection;// 研究方向
public String other;//专,兼职
public TeacherBean(){}
public TeacherBean(String nName,int nAge,String nPosition,String nLastDegree,String nHeadship,String nStudyDirection,String nOther){
name = nName;
age =nAge;
position=nPosition;
lastDegree = nLastDegree;
headship = nHeadship;
studyDirection = nStudyDirection;
other = nOther;
}
public void setName(String name){
this.name = name;
}
public void setAge(int age){
this.age = age;
}
public void setLastDegree(String lastDegree){
this.lastDegree = lastDegree;
}
public void setHeadship(String headship){
this.headship = headship;
}
public void setStudyDirection(String studyDirection){
this.studyDirection = studyDirection;
}
public void setPosition(String position){
this.position = position;
}
public void setOther(String other){
this.other = other;
}
public String getName(){
return name;
}
public int getAge(){
return age;
}
public String getLastDegree(){
return lastDegree;
}
public String getPosition(){
return position;
}
public String getHeadship(){
return headship;
}
public String getStudyDirection(){
return studyDirection;
}
public String getOther(){
return other;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -