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.
46 lines
846 B
46 lines
846 B
package org.use.entity;
|
|
|
|
public class Use {
|
|
private String username;
|
|
private String password;
|
|
private int phonenum;
|
|
private String email;
|
|
|
|
public Use() {
|
|
}
|
|
|
|
public Use(String username, String password, int phonenum, String email) {
|
|
this.username = username;
|
|
this.password = password;
|
|
this.phonenum = phonenum;
|
|
this.email = email;
|
|
}
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
public int getPhonenum() {
|
|
return phonenum;
|
|
}
|
|
public void setPhonenum(int phonenum) {
|
|
this.phonenum = phonenum;
|
|
}
|
|
public String getEmail() {
|
|
return email;
|
|
}
|
|
public void setEmail(String email) {
|
|
this.email = email;
|
|
}
|
|
|
|
|
|
|
|
}
|