📄 student.java
字号:
package org.aaron.db;
public class Student {
String id ;
String studentNo;
String phone;
String name;
String password;
String subjectId;
boolean chooosed;
String email;
public boolean isChooosed() {
return chooosed;
}
public void setChooosed(boolean chooosed) {
this.chooosed = chooosed;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getStudentNo() {
return studentNo;
}
public void setStudentNo(String studentNo) {
this.studentNo = studentNo;
}
public String getSubjectId() {
return subjectId;
}
public void setSubjectId(String subjectId) {
this.subjectId = subjectId;
}
public Student(){
};
public Student(String id, String studentNo, String phone, String name, String password, String subjectId, boolean chooosed, String email) {
super();
this.id = id;
this.studentNo = studentNo;
this.phone = phone;
this.name = name;
this.password = password;
this.subjectId = subjectId;
this.chooosed = chooosed;
this.email = email;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -