teacherbean.java

来自「报表,关于ireport报表的一些源码(转)」· Java 代码 · 共 63 行

JAVA
63
字号
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 + =
减小字号Ctrl + -
显示快捷键?