You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
package cn.fly.entity;
|
|
|
|
public class TeamInfo {
|
|
private String id;
|
|
private String sno;
|
|
private String name;
|
|
private String sex;
|
|
private String tel;
|
|
|
|
// Getter和Setter方法
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getSno() {
|
|
return sno;
|
|
}
|
|
|
|
public void setSno(String sno) {
|
|
this.sno = sno;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setSex(String sex) {
|
|
this.sex = sex;
|
|
}
|
|
|
|
public String getTel() {
|
|
return tel;
|
|
}
|
|
|
|
public void setTel(String tel) {
|
|
this.tel = tel;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "TeamInfo{" +
|
|
"id='" + id + '\'' +
|
|
", sno='" + sno + '\'' +
|
|
", name='" + name + '\'' +
|
|
", sex='" + sex + '\'' +
|
|
", tel='" + tel + '\'' +
|
|
'}';
|
|
}
|
|
} |