package com.atguigu.bean;
/**
* 用户的实体类对象
*
* @author wzg
*
*/
public class User {
public User(Integer id, String username, String password, String email) {
super();
this.id = id;
this.username = username;
this.password = password;
this.email = email;
}
public User() {
super();
// TODO Auto-generated constructor stub
}
private Integer id;
private String username;
private String password;
private String email;
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 getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
@Override
public String toString() {
return "User [id=" + id + ", username=" + username + ", password="
+ password + ", email=" + email + "]";
}
}
最近下载更多
2021900 LV1
2023年9月14日
dsfewrfwef LV4
2022年12月22日
酒酒清欢 LV8
2022年12月2日
893698834 LV1
2022年11月17日
mmy12345 LV1
2022年9月29日
levelhspdf LV7
2022年6月22日
邬松桥 LV11
2022年6月15日
CHENHAOJUDA LV10
2022年6月14日
今晚都别睡啦 LV9
2022年4月6日
wanglinddad LV55
2022年3月17日

最近浏览