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.
60 lines
1.1 KiB
60 lines
1.1 KiB
package com.orangesale.cn.entity;
|
|
|
|
public class OrangeUser {
|
|
private Integer id;
|
|
private String username;
|
|
private String password;
|
|
private String sex;
|
|
private String city;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
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 String getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setSex(String sex) {
|
|
this.sex = sex;
|
|
}
|
|
|
|
public String getCity() {
|
|
return city;
|
|
}
|
|
|
|
public void setCity(String city) {
|
|
this.city = city;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "OrangeUser{" +
|
|
"username='" + username + '\'' +
|
|
", password='" + password + '\'' +
|
|
", sex='" + sex + '\'' +
|
|
", city='" + city + '\'' +
|
|
'}';
|
|
}
|
|
}
|