abstractteacherlogin.java

来自「基于strurs架构+servlet+jsp+javabean架构科研管理系统」· Java 代码 · 共 64 行

JAVA
64
字号
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 + =
减小字号Ctrl + -
显示快捷键?