⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 examtable.java

📁 在线考试系统
💻 JAVA
字号:
package exam.dao;

import java.util.Date;

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

public class ExamTable implements java.io.Serializable {

	// Fields

	private ExamTableId id;
	private String examname;
	private Date answerpapertotaltime;
	private Date answermaketime;
	private String tesppapertotalpoint;
	private Date exambegintime;
	private String examexplain;
	private Date invigilate;
	private String everyquestionpoint;
	private String examposition;

	// Constructors

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

	/** minimal constructor */
	public ExamTable(ExamTableId id) {
		this.id = id;
	}

	/** full constructor */
	public ExamTable(ExamTableId id, String examname,
			Date answerpapertotaltime, Date answermaketime,
			String tesppapertotalpoint, Date exambegintime, String examexplain,
			Date invigilate, String everyquestionpoint, String examposition) {
		this.id = id;
		this.examname = examname;
		this.answerpapertotaltime = answerpapertotaltime;
		this.answermaketime = answermaketime;
		this.tesppapertotalpoint = tesppapertotalpoint;
		this.exambegintime = exambegintime;
		this.examexplain = examexplain;
		this.invigilate = invigilate;
		this.everyquestionpoint = everyquestionpoint;
		this.examposition = examposition;
	}

	// Property accessors

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

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

	public String getExamname() {
		return this.examname;
	}

	public void setExamname(String examname) {
		this.examname = examname;
	}

	public Date getAnswerpapertotaltime() {
		return this.answerpapertotaltime;
	}

	public void setAnswerpapertotaltime(Date answerpapertotaltime) {
		this.answerpapertotaltime = answerpapertotaltime;
	}

	public Date getAnswermaketime() {
		return this.answermaketime;
	}

	public void setAnswermaketime(Date answermaketime) {
		this.answermaketime = answermaketime;
	}

	public String getTesppapertotalpoint() {
		return this.tesppapertotalpoint;
	}

	public void setTesppapertotalpoint(String tesppapertotalpoint) {
		this.tesppapertotalpoint = tesppapertotalpoint;
	}

	public Date getExambegintime() {
		return this.exambegintime;
	}

	public void setExambegintime(Date exambegintime) {
		this.exambegintime = exambegintime;
	}

	public String getExamexplain() {
		return this.examexplain;
	}

	public void setExamexplain(String examexplain) {
		this.examexplain = examexplain;
	}

	public Date getInvigilate() {
		return this.invigilate;
	}

	public void setInvigilate(Date invigilate) {
		this.invigilate = invigilate;
	}

	public String getEveryquestionpoint() {
		return this.everyquestionpoint;
	}

	public void setEveryquestionpoint(String everyquestionpoint) {
		this.everyquestionpoint = everyquestionpoint;
	}

	public String getExamposition() {
		return this.examposition;
	}

	public void setExamposition(String examposition) {
		this.examposition = examposition;
	}

}

⌨️ 快捷键说明

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