package common.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Transient; import java.util.Date; import java.util.List; @Entity public class User { private Long id; private String email; private String password; private String name; private Long role; private Long roleType; private String auth; private Long modifyAccount; private Long createAccount; private Date modifyTime; private Date createTime; private Boolean delFlag; @Id @GeneratedValue public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getRole() { return role; } public void setRole(Long role) { this.role = role; } public Long getRoleType() { return roleType; } public void setRoleType(Long roleType) { this.roleType = roleType; } public Long getModifyAccount() { return modifyAccount; } public void setModifyAccount(Long modifyAccount) { this.modifyAccount = modifyAccount; } public Long getCreateAccount() { return createAccount; } public void setCreateAccount(Long createAccount) { this.createAccount = createAccount; } public Date getModifyTime() { return modifyTime; } public void setModifyTime(Date modifyTime) { this.modifyTime = modifyTime; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Boolean getDelFlag() { return delFlag; } public void setDelFlag(Boolean delFlag) { this.delFlag = delFlag; } @Transient public String getAuth() { return auth; } public void setAuth(String auth) { this.auth = auth; } @Override public String toString() { return "User{" + "id=" + id + ", email='" + email + '\'' + ", password='" + password + '\'' + ", name='" + name + '\'' + ", role=" + role + ", roleType=" + roleType + ", auth='" + auth + '\'' + ", modifyAccount=" + modifyAccount + ", createAccount=" + createAccount + ", modifyTime=" + modifyTime + ", createTime=" + createTime + ", delFlag=" + delFlag + '}'; } }