examforward.java

来自「在线考试系统: 这是基于struts和Hibernate的最新技术的在线考试系」· Java 代码 · 共 149 行

JAVA
149
字号
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 + =
减小字号Ctrl + -
显示快捷键?