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

📄 examvo.java

📁 中应用程序的访问权限对Java Web Console 中应用程序的访问权限 成功登录 Web 控制台后,可能无法自动访问在该控制台中注册的所有应用程序。通常,必须安装应用程序,才能让所有的用户在控制
💻 JAVA
字号:
package edu.yinhe.mis.vo;
/**
 * 
 * @author 刘洲
 *
 */
public class ExamVO {
	

	/**
	 * 试卷编号
	 */
	private String testPaper_NO;
	/**
	 * 试卷名称
	 */
	private String testPaper_Name;
	/**
	 * 试题ID
	 */
	private Integer question_ID;
	/**
	 * 试题类型
	 */
	private Integer questionType_ID;
	/**
	 * 试题所属科目
	 */
	private String object_Name;
	/**
	 *试卷规则编号
	 */
	private String testPaperRule_NO;
	/**
	 *试题正文
	 */
	private String questionName;
	/**
	 *试题注释说明
	 */
	private String explains;
	/**
	 *试题正确解答
	 */
	private String questionResult;
	/**
	 *试题难度等级编号
	 */
	private Integer difficultyDegreeID;
	/**
	 *试题难度等级名称
	 */
	private String difficultyDegreeName;
	/**
	 *试题难度等级编号
	 */
	private String questionTypeName;
	/**
	 *试题选项A,B,C,D
	 */
	private String optionA;
	private String optionB;
	private String optionC;
	private String optionD;

	public String getTestPaper_NO() {
		return testPaper_NO;
	}
	public void setTestPaper_NO(String testPaper_NO) {
		this.testPaper_NO = testPaper_NO;
	}
	public String getTestPaper_Name() {
		return testPaper_Name;
	}
	public void setTestPaper_Name(String testPaper_Name) {
		this.testPaper_Name = testPaper_Name;
	}
	public Integer getQuestion_ID() {
		return question_ID;
	}
	public void setQuestion_ID(Integer question_ID) {
		this.question_ID = question_ID;
	}
	public Integer getQuestionType_ID() {
		return questionType_ID;
	}
	public void setQuestionType_ID(Integer questionType_ID) {
		this.questionType_ID = questionType_ID;
	}
	public String getObject_Name() {
		return object_Name;
	}
	public void setObject_Name(String object_Name) {
		this.object_Name = object_Name;
	}
	public String getTestPaperRule_NO() {
		return testPaperRule_NO;
	}
	public void setTestPaperRule_NO(String testPaperRule_NO) {
		this.testPaperRule_NO = testPaperRule_NO;
	}
	public String getQuestionName() {
		return questionName;
	}
	public void setQuestionName(String questionName) {
		this.questionName = questionName;
	}
	public String getExplains() {
		return explains;
	}
	public void setExplains(String explains) {
		this.explains = explains;
	}
	public String getQuestionResult() {
		return questionResult;
	}
	public void setQuestionResult(String questionResult) {
		this.questionResult = questionResult;
	}
	public Integer getDifficultyDegreeID() {
		return difficultyDegreeID;
	}
	public void setDifficultyDegreeID(Integer difficultyDegreeID) {
		this.difficultyDegreeID = difficultyDegreeID;
	}
	public String getDifficultyDegreeName() {
		return difficultyDegreeName;
	}
	public void setDifficultyDegreeName(String difficultyDegreeName) {
		this.difficultyDegreeName = difficultyDegreeName;
	}
	public String getQuestionTypeName() {
		return questionTypeName;
	}
	public void setQuestionTypeName(String questionTypeName) {
		this.questionTypeName = questionTypeName;
	}
	public String getOptionA() {
		return optionA;
	}
	public void setOptionA(String optionA) {
		this.optionA = optionA;
	}
	public String getOptionB() {
		return optionB;
	}
	public void setOptionB(String optionB) {
		this.optionB = optionB;
	}
	public String getOptionC() {
		return optionC;
	}
	public void setOptionC(String optionC) {
		this.optionC = optionC;
	}
	public String getOptionD() {
		return optionD;
	}
	public void setOptionD(String optionD) {
		this.optionD = optionD;
	}

}

⌨️ 快捷键说明

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