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

📄 appraiserquestiontable.java

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

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

public class AppraiserQuestionTable implements java.io.Serializable {

	// Fields

	private AppraiserQuestionTableId id;
	private String appraisercontent;
	private String appraiserpoint;
	private String testpapernumbers;

	// Constructors

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

	/** minimal constructor */
	public AppraiserQuestionTable(AppraiserQuestionTableId id) {
		this.id = id;
	}

	/** full constructor */
	public AppraiserQuestionTable(AppraiserQuestionTableId id,
			String appraisercontent, String appraiserpoint,
			String testpapernumbers) {
		this.id = id;
		this.appraisercontent = appraisercontent;
		this.appraiserpoint = appraiserpoint;
		this.testpapernumbers = testpapernumbers;
	}

	// Property accessors

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

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

	public String getAppraisercontent() {
		return this.appraisercontent;
	}

	public void setAppraisercontent(String appraisercontent) {
		this.appraisercontent = appraisercontent;
	}

	public String getAppraiserpoint() {
		return this.appraiserpoint;
	}

	public void setAppraiserpoint(String appraiserpoint) {
		this.appraiserpoint = appraiserpoint;
	}

	public String getTestpapernumbers() {
		return this.testpapernumbers;
	}

	public void setTestpapernumbers(String testpapernumbers) {
		this.testpapernumbers = testpapernumbers;
	}

}

⌨️ 快捷键说明

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