📄 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 + -