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

📄 question.java

📁 本在线考试系统分成前台和后天
💻 JAVA
字号:
package org.yeeku.model;

import java.io.Serializable;

public class Question  implements Serializable
{
	private int id;
	private String quTitle;
	private String quHard;
	private String quScore;
	private String quAnswer;
	private String quType;
	private String selectOption;
	private ExamType examType;
	public Question()
	{
	}
	public Question(String quTitle,String quHard,String quScore,
		String quAnswer,String quType,String selectOption , ExamType examType)
	{
		this.quTitle = quTitle;
		this.quHard = quHard;
		this.quScore = quScore;
		this.quAnswer = quAnswer;
		this.quType = quType;
		this.selectOption = selectOption;
		this.examType = examType;
	}

	public void setSelectOption(String selectOption)
	{
		this.selectOption = selectOption;
	}
	public String getSelectOption()
	{
		return this.selectOption;
	}
	public void setId(int id)
	{
		this.id = id;
	}
	public void setExamType(ExamType examType)
	{
		this.examType = examType;
	}
	public void setQuTitle(String quTitle)
	{
		this.quTitle = quTitle;
	}
	public void setQuHard(String quHard)
	{
		this.quHard = quHard;
	}
	public void setQuScore(String quScore)
	{
		this.quScore = quScore;
	}
	public void setQuAnswer(String quAnswer)
	{
		this.quAnswer = quAnswer;
	}
	public void setQuType(String quType)
	{
		this.quType = quType;
	}

	public int getId()
	{
		return this.id;
	}
	public String getQuTitle()
	{
		return this.quTitle;
	}
	public String getQuHard()
	{
		return this.quHard;
	}
	public String getQuScore()
	{
		return this.quScore;
	}
	public String getQuAnswer()
	{
		return this.quAnswer;
	}
	public String getQuType()
	{
		return this.quType;
	}
	public ExamType getExamType()
	{
		return this.examType;
	}
}

⌨️ 快捷键说明

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