userbean.java~1~
来自「一个Java编写的挺不错的人事管理系统」· JAVA~1~ 代码 · 共 54 行
JAVA~1~
54 行
package work;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class UserBean {
private String name;
private String password;
private String type;
public UserBean() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}
private void jbInit() throws Exception {
}
public void setName(String name) {
this.name = name;
}
public void setPassword(String password) {
this.password = password;
}
public void setType(String type) {
this.type = type;
}
public String getName() {
return name;
}
public String getPassword() {
return password;
}
public String getType() {
return type;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?