questiontypetable.java

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

JAVA
81
字号
package exam.dao;

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

public class QuestiontypeTable implements java.io.Serializable {

	// Fields

	private QuestiontypeTableId id;
	private String questiontypename;
	private String answermanner;
	private String questiontypeexplain;
	private Integer questiontypeflag;

	// Constructors

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

	/** minimal constructor */
	public QuestiontypeTable(QuestiontypeTableId id) {
		this.id = id;
	}

	/** full constructor */
	public QuestiontypeTable(QuestiontypeTableId id, String questiontypename,
			String answermanner, String questiontypeexplain,
			Integer questiontypeflag) {
		this.id = id;
		this.questiontypename = questiontypename;
		this.answermanner = answermanner;
		this.questiontypeexplain = questiontypeexplain;
		this.questiontypeflag = questiontypeflag;
	}

	// Property accessors

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

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

	public String getQuestiontypename() {
		return this.questiontypename;
	}

	public void setQuestiontypename(String questiontypename) {
		this.questiontypename = questiontypename;
	}

	public String getAnswermanner() {
		return this.answermanner;
	}

	public void setAnswermanner(String answermanner) {
		this.answermanner = answermanner;
	}

	public String getQuestiontypeexplain() {
		return this.questiontypeexplain;
	}

	public void setQuestiontypeexplain(String questiontypeexplain) {
		this.questiontypeexplain = questiontypeexplain;
	}

	public Integer getQuestiontypeflag() {
		return this.questiontypeflag;
	}

	public void setQuestiontypeflag(Integer questiontypeflag) {
		this.questiontypeflag = questiontypeflag;
	}

}

⌨️ 快捷键说明

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