testusertable.java

来自「在线考试系统」· Java 代码 · 共 70 行

JAVA
70
字号
package exam.dao;

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

public class TestuserTable implements java.io.Serializable {

	// Fields

	private TestuserTableId id;
	private String testname;
	private String testpassword;
	private Integer testflag;

	// Constructors

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

	/** minimal constructor */
	public TestuserTable(TestuserTableId id) {
		this.id = id;
	}

	/** full constructor */
	public TestuserTable(TestuserTableId id, String testname,
			String testpassword, Integer testflag) {
		this.id = id;
		this.testname = testname;
		this.testpassword = testpassword;
		this.testflag = testflag;
	}

	// Property accessors

	public TestuserTableId getId() {
		return this.id;
	}

	public void setId(TestuserTableId id) {
		this.id = id;
	}

	public String getTestname() {
		return this.testname;
	}

	public void setTestname(String testname) {
		this.testname = testname;
	}

	public String getTestpassword() {
		return this.testpassword;
	}

	public void setTestpassword(String testpassword) {
		this.testpassword = testpassword;
	}

	public Integer getTestflag() {
		return this.testflag;
	}

	public void setTestflag(Integer testflag) {
		this.testflag = testflag;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?