forked from ps2hc5nfx/youxi
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.
98 lines
1.3 KiB
98 lines
1.3 KiB
package com.ischoolbar.programmer.entity.common;
|
|
|
|
import java.util.Date;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@Component
|
|
public class Account {
|
|
|
|
private Long id;
|
|
|
|
private String name;
|
|
|
|
private String password;
|
|
|
|
private String email;
|
|
|
|
private String trueName ;
|
|
|
|
private int sex;
|
|
|
|
private int status;
|
|
|
|
private Date createTime;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
public String getTrueName() {
|
|
return trueName;
|
|
}
|
|
|
|
public void setTrueName(String trueName) {
|
|
this.trueName = trueName;
|
|
}
|
|
|
|
public int getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setSex(int sex) {
|
|
this.sex = sex;
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|