📄 userbean.java
字号:
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 username;
private String password;
private String testpassword;
private String type;
public UserBean() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}
private void jbInit() throws Exception {
}
public void setName(String username) {
this.username = username;
}
public void setPassword(String password) {
this.password = password;
}
public void setTestPassword(String testpassword) {
this.testpassword = testpassword;
}
public void setType(String type) {
this.type = type;
}
public String getName() {
return username;
}
public String getPassword() {
return password;
}
public String getTestPassword() {
return testpassword;
}
public String getType() {
return type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -