📄 user.java
字号:
package com.business.vo;
/**
* @author Administrator
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public class User {
private String userId;
/** identifier field */
private String userName;
/** identifier field */
private String userPwd;
/** identifier field */
private String roleId;
/** identifier field */
private String userPhone;
/** identifier field */
private String userAddress;
/**
* Returns the roleId.
* @return String
*/
public String getRoleId() {
return roleId;
}
/**
* Returns the userAddress.
* @return String
*/
public String getUserAddress() {
return userAddress;
}
/**
* Returns the userId.
* @return String
*/
public String getUserId() {
return userId;
}
/**
* Returns the userName.
* @return String
*/
public String getUserName() {
return userName;
}
/**
* Returns the userPhone.
* @return String
*/
public String getUserPhone() {
return userPhone;
}
/**
* Returns the userPwd.
* @return String
*/
public String getUserPwd() {
return userPwd;
}
/**
* Sets the roleId.
* @param roleId The roleId to set
*/
public void setRoleId(String roleId) {
this.roleId = roleId;
}
/**
* Sets the userAddress.
* @param userAddress The userAddress to set
*/
public void setUserAddress(String userAddress) {
this.userAddress = userAddress;
}
/**
* Sets the userId.
* @param userId The userId to set
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* Sets the userName.
* @param userName The userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* Sets the userPhone.
* @param userPhone The userPhone to set
*/
public void setUserPhone(String userPhone) {
this.userPhone = userPhone;
}
/**
* Sets the userPwd.
* @param userPwd The userPwd to set
*/
public void setUserPwd(String userPwd) {
this.userPwd = userPwd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -