📄 abstractuser.java
字号:
package com.yourcompany.DAO;
/**
* AbstractUser entity provides the base persistence definition of the User
* entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractUser implements java.io.Serializable {
// Fields
private String userId;
private String userName;
private String password;
// Constructors
/** default constructor */
public AbstractUser() {
}
/** full constructor */
public AbstractUser(String userId, String userName, String password) {
this.userId = userId;
this.userName = userName;
this.password = password;
}
// Property accessors
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -