| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- package com.zhentao.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.Date;
- import lombok.Data;
- /**
- * 管理员用户表
- * @TableName admin_user
- */
- @TableName(value ="admin_user")
- @Data
- public class AdminUser {
- /**
- * 主键ID
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 用户名
- */
- private String username;
- /**
- * 密码(MD5加密)
- */
- private String password;
- /**
- * 密码盐
- */
- private String salt;
- /**
- * 真实姓名
- */
- private String realName;
- /**
- * 手机号
- */
- private String phone;
- /**
- * 邮箱
- */
- private String email;
- /**
- * 状态:0-禁用 1-启用
- */
- private Integer status;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新时间
- */
- private Date updateTime;
- /**
- * 最后登录时间
- */
- private Date lastLoginTime;
- @Override
- public boolean equals(Object that) {
- if (this == that) {
- return true;
- }
- if (that == null) {
- return false;
- }
- if (getClass() != that.getClass()) {
- return false;
- }
- AdminUser other = (AdminUser) that;
- return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
- && (this.getUsername() == null ? other.getUsername() == null : this.getUsername().equals(other.getUsername()))
- && (this.getPassword() == null ? other.getPassword() == null : this.getPassword().equals(other.getPassword()))
- && (this.getSalt() == null ? other.getSalt() == null : this.getSalt().equals(other.getSalt()))
- && (this.getRealName() == null ? other.getRealName() == null : this.getRealName().equals(other.getRealName()))
- && (this.getPhone() == null ? other.getPhone() == null : this.getPhone().equals(other.getPhone()))
- && (this.getEmail() == null ? other.getEmail() == null : this.getEmail().equals(other.getEmail()))
- && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus()))
- && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
- && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime()))
- && (this.getLastLoginTime() == null ? other.getLastLoginTime() == null : this.getLastLoginTime().equals(other.getLastLoginTime()));
- }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
- result = prime * result + ((getUsername() == null) ? 0 : getUsername().hashCode());
- result = prime * result + ((getPassword() == null) ? 0 : getPassword().hashCode());
- result = prime * result + ((getSalt() == null) ? 0 : getSalt().hashCode());
- result = prime * result + ((getRealName() == null) ? 0 : getRealName().hashCode());
- result = prime * result + ((getPhone() == null) ? 0 : getPhone().hashCode());
- result = prime * result + ((getEmail() == null) ? 0 : getEmail().hashCode());
- result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode());
- result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
- result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
- result = prime * result + ((getLastLoginTime() == null) ? 0 : getLastLoginTime().hashCode());
- return result;
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder();
- sb.append(getClass().getSimpleName());
- sb.append(" [");
- sb.append("Hash = ").append(hashCode());
- sb.append(", id=").append(id);
- sb.append(", username=").append(username);
- sb.append(", password=").append(password);
- sb.append(", salt=").append(salt);
- sb.append(", realName=").append(realName);
- sb.append(", phone=").append(phone);
- sb.append(", email=").append(email);
- sb.append(", status=").append(status);
- sb.append(", createTime=").append(createTime);
- sb.append(", updateTime=").append(updateTime);
- sb.append(", lastLoginTime=").append(lastLoginTime);
- sb.append("]");
- return sb.toString();
- }
- }
|