?? student.java
字號:
/**
*
*/
package com.zjxy.hibernate.model;
/**
* @author gradenarn
*
*/
public class Student {
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;
/**
* @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;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -