📄 studentform.java
字号:
/**
*
*/
package com.zjxy.hibernate.form;
import org.apache.struts.action.ActionForm;
/**
* @author gradenarn
*
*/
public class StudentForm extends ActionForm {
private static final long serialVersionUID = 1L;
private int sequenceID;
private String studentID;
private String studentName;
private String studentSex;
private String studentCall;
private String studentAddress;
private String studentClass;
private String studentNO;
private String studentIDSearch;
/**
* @return Returns the serialVersionUID.
*/
public static long getSerialVersionUID() {
return serialVersionUID;
}
/**
* @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 studentAddress.
*/
public String getStudentAddress() {
return studentAddress;
}
/**
* @param studentAddress The studentAddress to set.
*/
public void setStudentAddress(String studentAddress) {
this.studentAddress = studentAddress;
}
/**
* @return Returns the studentCall.
*/
public String getStudentCall() {
return studentCall;
}
/**
* @param studentCall The studentCall to set.
*/
public void setStudentCall(String studentCall) {
this.studentCall = studentCall;
}
/**
* @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 studentNO.
*/
public String getStudentNO() {
return studentNO;
}
/**
* @param studentNO The studentNO to set.
*/
public void setStudentNO(String studentNO) {
this.studentNO = studentNO;
}
/**
* @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 studentIDSearch.
*/
public String getStudentIDSearch() {
return studentIDSearch;
}
/**
* @param studentIDSearch The studentIDSearch to set.
*/
public void setStudentIDSearch(String studentIDSearch) {
this.studentIDSearch = studentIDSearch;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -