studentpaperform.java
来自「在线考试系统: 这是基于struts和Hibernate的最新技术的在线考试系」· Java 代码 · 共 67 行
JAVA
67 行
package com.zjxy.hibernate.form;
import org.apache.struts.action.ActionForm;
public class StudentPaperForm extends ActionForm{
/**
*
*/
private static final long serialVersionUID = 1L;
private int sequenceID;
private String name;
private String studentid;
private long titlescore;
/**
* @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 name.
*/
public String getName() {
return name;
}
/**
* @param name The name to set.
*/
public void setName(String name) {
this.name = name;
}
/**
* @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;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?