?? testusertable.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -