studenttable.java

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

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