📄 studenttable.java
字号:
package exam.dao;
/**
* StudentTable entity. @author MyEclipse Persistence Tools
*/
public class StudentTable implements java.io.Serializable {
// Fields
private StudentTableId id;
private String studentname;
private String studentnumbers;
private String studentidcard;
// Constructors
/** default constructor */
public StudentTable() {
}
/** minimal constructor */
public StudentTable(StudentTableId id) {
this.id = id;
}
/** full constructor */
public StudentTable(StudentTableId id, String studentname,
String studentnumbers, String studentidcard) {
this.id = id;
this.studentname = studentname;
this.studentnumbers = studentnumbers;
this.studentidcard = studentidcard;
}
// Property accessors
public StudentTableId getId() {
return this.id;
}
public void setId(StudentTableId id) {
this.id = id;
}
public String getStudentname() {
return this.studentname;
}
public void setStudentname(String studentname) {
this.studentname = studentname;
}
public String getStudentnumbers() {
return this.studentnumbers;
}
public void setStudentnumbers(String studentnumbers) {
this.studentnumbers = studentnumbers;
}
public String getStudentidcard() {
return this.studentidcard;
}
public void setStudentidcard(String studentidcard) {
this.studentidcard = studentidcard;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -