package com.chen.pojo;
import java.io.Serializable;
import java.util.Date;
public class Student implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private int id;
private String name;
private int age;
private Date birth;
public Student() {
}
public Student(int id, String name, int age, Date birth) {
this.id = id;
this.name = name;
this.age = age;
this.birth = birth;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public Date getBirth() {
return birth;
}
public void setBirth(Date birth) {
this.birth = birth;
}
@Override
public String toString() {
return "Student [id=" + id + ", name=" + name + ", age=" + age
+ ", birth=" + birth + "]";
}
}
最近下载更多
abc4980 LV1
2024年12月17日
maojianyun LV30
2024年1月8日
lironggang LV38
2023年6月14日
菜鸟666 LV2
2022年8月28日
ewan007 LV30
2022年6月23日
vicgong LV4
2022年5月23日
ma小跳 LV5
2022年4月2日
汤汤汤要学编程 LV11
2022年3月9日
blackcat123 LV7
2021年8月26日
elephant_xiang LV2
2021年8月23日
最近浏览更多
abc4980 LV1
2024年12月17日
uni-code_0123 LV1
2023年11月21日
lironggang LV38
2023年6月14日
lilily1119 LV4
2023年4月29日
徐鹏飞
2023年3月18日
暂无贡献等级
微信网友_6145740972576768 LV2
2022年12月21日
菜鸟666 LV2
2022年8月28日
ewan007 LV30
2022年6月23日
vicgong LV4
2022年5月23日
ma小跳 LV5
2022年4月2日

