public class Student {
private String name;
private int studentId;
private String sex;
private int studentAge;
private int time;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getStudentId() {
return studentId;
}
public void setStudentId(int studentId) {
this.studentId = studentId;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public int getStudentAge() {
return studentAge;
}
public void setStudentAge(int studentAge) {
this.studentAge = studentAge;
}
public int getTime() {
return time;
}
public void setTime(int time) {
this.time = time;
}
}
老师 这是我的Student类 方法都是用自动生成的 是有这个方法的
2019-07-24 14:05:24
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星