Student
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package data;
import java.io.Serializable;
import java.util.Date;
/**
*
* @author Administrator
*/
public class Student implements Serializable {
public Student(){
}
private int studentId;
private String fullName;
private Date birthday;
private int mark;
public int getStudentId() {
return studentId;
}
public void setStudentId(int studentId) {
this.studentId = studentId;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public int getMark() {
return mark;
}
public void setMark(int mark) {
this.mark = mark;
}
}
Bạn đang đọc truyện trên: Truyen4U.Com