staff.java

来自「这是用jsp编写的通信录」· Java 代码 · 共 75 行

JAVA
75
字号
package data;

import java.io.Serializable;

public class Staff implements Serializable {
/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
private int id;
private String name;
private int age;
private String job;
private String telephone;
private String mobilephone;
private String email;
private int depid;
private String depname;
public int getAge() {
	return age;
	
}
public void setAge(int age) {
	this.age = age;
}
public int getDepid() {
	return depid;
}
public void setDepid(int depid) {
	this.depid = depid;
}
public String getDepname() {
	return depname;
}
public void setDepname(String depname) {
	this.depname = depname;
}
public String getEmail() {
	return email;
}
public void setEmail(String email) {
	this.email = email;
}
public int getId() {
	return id;
}
public void setId(int id) {
	this.id = id;
}
public String getJob() {
	return job;
}
public void setJob(String job) {
	this.job = job;
}
public String getMobilephone() {
	return mobilephone;
}
public void setMobilephone(String mobilephone) {
	this.mobilephone = mobilephone;
}
public String getName() {
	return name;
}
public void setName(String name) {
	this.name = name;
}
public String getTelephone() {
	return telephone;
}
public void setTelephone(String telephone) {
	this.telephone = telephone;
}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?