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

📄 scorelist.java

📁 在线考试系统: 这是基于struts和Hibernate的最新技术的在线考试系统.数据库是MySql.能添加课程
💻 JAVA
字号:
/**
 * 
 */
package com.zjxy.hibernate.model;

import java.util.Date;

/**
 * @author gradenarn
 *
 */
public class ScoreList {

	
	  private String kemuID;
	  private String studentID;
	  private String studentName;
	  private String studentSex;
	  private String studentClass;
	  private Date examTime;
	  private String totleScore;
	  private java.lang.Float score;
	  private Long totalExam;
	  private Double total_Score;
	  private Double total;
	  
	  public ScoreList() {
	  } 

	  public ScoreList(String kemuID, String studentID, String studentName,
			  String studentSex, String studentClass, Date examTime,
			  String totleScore, java.lang.Float score) {
	    this.kemuID = kemuID;
	    this.studentID = studentID;
	    this.studentName = studentName;
	    this.studentSex = studentSex;
	    this.studentClass = studentClass;
	    this.examTime = examTime;
	    this.totleScore = totleScore;
	    this.score = score;
	  }

	  public ScoreList(String studentID, String studentName,
			  String studentSex, String studentClass, Long totalExam,
			  Double total) {
	    this.studentID = studentID;
	    this.studentName = studentName;
	    this.studentSex = studentSex;
	    this.studentClass = studentClass;
        this.totalExam = totalExam;
	    this.total = total;
	  }
	  
	/**
	 * @return Returns the examTime.
	 */
	public Date getExamTime() {
		return examTime;
	}

	/**
	 * @param examTime The examTime to set.
	 */
	public void setExamTime(Date examTime) {
		this.examTime = examTime;
	}

	/**
	 * @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 score.
	 */
	public java.lang.Float getScore() {
		return score;
	}

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

	/**
	 * @return Returns the studentClass.
	 */
	public String getStudentClass() {
		return studentClass;
	}

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

	/**
	 * @return Returns the studentID.
	 */
	public String getStudentID() {
		return studentID;
	}

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

	/**
	 * @return Returns the studentName.
	 */
	public String getStudentName() {
		return studentName;
	}

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

	/**
	 * @return Returns the studentSex.
	 */
	public String getStudentSex() {
		return studentSex;
	}

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

	/**
	 * @return Returns the totleScore.
	 */
	public String getTotleScore() {
		return totleScore;
	}

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


	/**
	 * @return Returns the totalExam.
	 */
	public Long getTotalExam() {
		return totalExam;
	}

	/**
	 * @param totalExam The totalExam to set.
	 */
	public void setTotalExam(Long totalExam) {
		this.totalExam = totalExam;
	}

	/**
	 * @return Returns the total.
	 */
	public Double getTotal() {
		return total;
	}

	/**
	 * @param total The total to set.
	 */
	public void setTotal(Double total) {
		this.total = total;
	}

	/**
	 * @return Returns the total_Score.
	 */
	public Double getTotal_Score() {
		return total_Score;
	}

	/**
	 * @param total_Score The total_Score to set.
	 */
	public void setTotal_Score(Double total_Score) {
		this.total_Score = total_Score;
	}

}

⌨️ 快捷键说明

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