📄 user.java
字号:
/*
* Created on 2005-6-23
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.ug.sztz.domain.oa;
/**
* @author 桂训龙
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class User {
private String userid;
private String username;
private String password;
private String tel_h;
private String tel_o;
private String tel_m;
private String email;
private String manager;
/**
* @return Returns the email.
*/
public String getEmail() {
return email;
}
/**
* @param email The email to set.
*/
public void setEmail(String email) {
this.email = email;
}
/**
* @return Returns the manager.
*/
public String getManager() {
return manager;
}
/**
* @param manager The manager to set.
*/
public void setManager(String manager) {
this.manager = manager;
}
/**
* @return Returns the password.
*/
public String getPassword() {
return password;
}
/**
* @param password The password to set.
*/
public void setPassword(String password) {
this.password = password;
}
/**
* @return Returns the tel_h.
*/
public String getTel_h() {
return tel_h;
}
/**
* @param tel_h The tel_h to set.
*/
public void setTel_h(String tel_h) {
this.tel_h = tel_h;
}
/**
* @return Returns the tel_m.
*/
public String getTel_m() {
return tel_m;
}
/**
* @param tel_m The tel_m to set.
*/
public void setTel_m(String tel_m) {
this.tel_m = tel_m;
}
/**
* @return Returns the tel_o.
*/
public String getTel_o() {
return tel_o;
}
/**
* @param tel_o The tel_o to set.
*/
public void setTel_o(String tel_o) {
this.tel_o = tel_o;
}
/**
* @return Returns the userid.
*/
public String getUserid() {
return userid;
}
/**
* @param userid The userid to set.
*/
public void setUserid(String userid) {
this.userid = userid;
}
/**
* @return Returns the username.
*/
public String getUsername() {
return username;
}
/**
* @param username The username to set.
*/
public void setUsername(String username) {
this.username = username;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -