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

📄 studentpaper.java

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

import java.util.Set;

public class StudentPaper {
 private int sequenceID;
 private String name;
 private String studentid;
 private Set paperlist;
 private long titlescore;
 private String isview="0";
/**
 * @return Returns the name.
 */
public String getName() {
	return name;
}
/**
 * @param name The name to set.
 */
public void setName(String name) {
	this.name = name;
}
/**
 * @return Returns the paperlist.
 */
public Set getPaperlist() {
	return paperlist;
}
/**
 * @param paperlist The paperlist to set.
 */
public void setPaperlist(Set paperlist) {
	this.paperlist = paperlist;
}
/**
 * @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 studentid.
 */
public String getStudentid() {
	return studentid;
}
/**
 * @param studentid The studentid to set.
 */
public void setStudentid(String studentid) {
	this.studentid = studentid;
}
/**
 * @return Returns the titlescore.
 */
public long getTitlescore() {
	return titlescore;
}
/**
 * @param titlescore The titlescore to set.
 */
public void setTitlescore(long titlescore) {
	this.titlescore = titlescore;
}
/**
 * @return Returns the isview.
 */
public String getIsview() {
	return isview;
}
/**
 * @param isview The isview to set.
 */
public void setIsview(String isview) {
	this.isview = isview;
}
}

⌨️ 快捷键说明

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