studentbean.java
来自「基于LDAP的单点登录方案的设计与实现(源代码+论文」· Java 代码 · 共 76 行
JAVA
76 行
package bean;
public class StudentBean {
private int id;
private String name;
private String phone;
private String mobile;
private String address;
private String email;
private String qq;
public StudentBean(int id, String name, String phone, String mobile,
String address, String email, String qq) {
super();
this.id = id;
this.name = name;
this.phone = phone;
this.mobile = mobile;
this.address = address;
this.email = email;
this.qq = qq;
}
public StudentBean() {
super();
}
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 String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getQq() {
return qq;
}
public void setQq(String qq) {
this.qq = qq;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?