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

📄 examforward.java

📁 java 考试管理系统 很好的很强大 很好的很强大
💻 JAVA
字号:
package com.zjxy.hibernate.model;

public class ExamForward {
	private static final long serialVersionUID = 1L;
	
	private int sequenceID;
	
	private String kemuID;
	
	private String tikuNO;
	
	private int questionNo;
	
	private String question;
	
	private String answer;
	
	private long score;
	
	private QuestionPaper questionpaper;
	
	

	/**
	 * @return Returns the serialVersionUID.
	 */
	public static long getSerialVersionUID() {
		return serialVersionUID;
	}

	/**
	 * @return Returns the answer.
	 */
	public String getAnswer() {
		return answer;
	}

	/**
	 * @param answer The answer to set.
	 */
	public void setAnswer(String answer) {
		this.answer = answer;
	}

	/**
	 * @return Returns the kemuID.
	 */
	public String getKemuID() {
		return kemuID;
	}

	/**
	 * @param kemuID The kemuID to set.
	 */
	public void setKemuID(String kemuID) {
		this.kemuID = kemuID;
	}

	/**
	 * @return Returns the question.
	 */
	public String getQuestion() {
		return question;
	}

	/**
	 * @param question The question to set.
	 */
	public void setQuestion(String question) {
		this.question = question;
	}

	

	

	/**
	 * @return Returns the questionNo.
	 */
	public int getQuestionNo() {
		return questionNo;
	}

	/**
	 * @param questionNo The questionNo to set.
	 */
	public void setQuestionNo(int questionNo) {
		this.questionNo = questionNo;
	}

	/**
	 * @return Returns the sequenceID.
	 */
	public int getSequenceID() {
		return sequenceID;
	}

	/**
	 * @param sequenceID The sequenceID to set.
	 */
	public void setSequenceID(int sequenceID) {
		this.sequenceID = sequenceID;
	}

	/**
	 * @return Returns the tikuNO.
	 */
	public String getTikuNO() {
		return tikuNO;
	}

	/**
	 * @param tikuNO The tikuNO to set.
	 */
	public void setTikuNO(String tikuNO) {
		this.tikuNO = tikuNO;
	}

	/**
	 * @return Returns the questionpaper.
	 */
	public QuestionPaper getQuestionpaper() {
		return questionpaper;
	}

	/**
	 * @param questionpaper The questionpaper to set.
	 */
	public void setQuestionpaper(QuestionPaper questionpaper) {
		this.questionpaper = questionpaper;
	}

	/**
	 * @return Returns the score.
	 */
	public long getScore() {
		return score;
	}

	/**
	 * @param score The score to set.
	 */
	public void setScore(long score) {
		this.score = score;
	}

	
}

⌨️ 快捷键说明

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