testuser.java

来自「Ajax(DWR) + Spring + Hibernate + Struts整」· Java 代码 · 共 52 行

JAVA
52
字号
package com.haiku.bean;

/**
 * Testuser entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Testuser implements java.io.Serializable {

	// Fields

	private String userName;
	private String password;
//	private String isLogin;

	// Constructors

	/** default constructor */
	public Testuser() {
	}

	/** minimal constructor */
	public Testuser(String userName) {
		this.userName = userName;
	}

	/** full constructor */
	public Testuser(String userName, String password) {
		this.userName = userName;
		this.password = password;
	}

	// Property accessors

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