📄 abstractteacherlogin.java
字号:
package cn.edu.zucc.research.model;
import java.util.Date;
public abstract class AbstractTeacherLogin implements java.io.Serializable {
private String userId;
private String userName;
private String userPass;
private Date registerDate;
public AbstractTeacherLogin() {
}
public AbstractTeacherLogin(String userId) {
this.userId = userId;
}
public AbstractTeacherLogin(String userId, String userName,
String userPass, Date registerDate) {
this.userId = userId;
this.userName = userName;
this.userPass = userPass;
this.registerDate = registerDate;
}
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 getUserPass() {
return this.userPass;
}
public void setUserPass(String userPass) {
this.userPass = userPass;
}
public Date getRegisterDate() {
return this.registerDate;
}
public void setRegisterDate(Date registerDate) {
this.registerDate = registerDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -