package pwc.taxtech.atms.entity; import java.io.Serializable; import java.util.Date; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table user * * @mbg.generated do_not_delete_during_merge */ public class User implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.id * * @mbg.generated */ private String id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.user_name * * @mbg.generated */ private String userName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.email * * @mbg.generated */ private String email; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.password * * @mbg.generated */ private String password; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.login_type * * @mbg.generated */ private Integer loginType; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.status * * @mbg.generated */ private Integer status; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.expiration_date * * @mbg.generated */ private Date expirationDate; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.create_time * * @mbg.generated */ private Date createTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.update_time * * @mbg.generated */ private Date updateTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.is_admin * * @mbg.generated */ private Boolean isAdmin; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.password_update_time * * @mbg.generated */ private Date passwordUpdateTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.attempt_times * * @mbg.generated */ private Integer attemptTimes; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.locked_time * * @mbg.generated */ private Date lockedTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.organization_id * * @mbg.generated */ private String organizationId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column user.is_super_admin * * @mbg.generated */ private Boolean isSuperAdmin; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table user * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.id * * @return the value of user.id * * @mbg.generated */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.id * * @param id the value for user.id * * @mbg.generated */ public void setId(String id) { this.id = id == null ? null : id.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.user_name * * @return the value of user.user_name * * @mbg.generated */ public String getUserName() { return userName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.user_name * * @param userName the value for user.user_name * * @mbg.generated */ public void setUserName(String userName) { this.userName = userName == null ? null : userName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.email * * @return the value of user.email * * @mbg.generated */ public String getEmail() { return email; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.email * * @param email the value for user.email * * @mbg.generated */ public void setEmail(String email) { this.email = email == null ? null : email.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.password * * @return the value of user.password * * @mbg.generated */ public String getPassword() { return password; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.password * * @param password the value for user.password * * @mbg.generated */ public void setPassword(String password) { this.password = password == null ? null : password.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.login_type * * @return the value of user.login_type * * @mbg.generated */ public Integer getLoginType() { return loginType; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.login_type * * @param loginType the value for user.login_type * * @mbg.generated */ public void setLoginType(Integer loginType) { this.loginType = loginType; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.status * * @return the value of user.status * * @mbg.generated */ public Integer getStatus() { return status; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.status * * @param status the value for user.status * * @mbg.generated */ public void setStatus(Integer status) { this.status = status; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.expiration_date * * @return the value of user.expiration_date * * @mbg.generated */ public Date getExpirationDate() { return expirationDate; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.expiration_date * * @param expirationDate the value for user.expiration_date * * @mbg.generated */ public void setExpirationDate(Date expirationDate) { this.expirationDate = expirationDate; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.create_time * * @return the value of user.create_time * * @mbg.generated */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.create_time * * @param createTime the value for user.create_time * * @mbg.generated */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.update_time * * @return the value of user.update_time * * @mbg.generated */ public Date getUpdateTime() { return updateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.update_time * * @param updateTime the value for user.update_time * * @mbg.generated */ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.is_admin * * @return the value of user.is_admin * * @mbg.generated */ public Boolean getIsAdmin() { return isAdmin; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.is_admin * * @param isAdmin the value for user.is_admin * * @mbg.generated */ public void setIsAdmin(Boolean isAdmin) { this.isAdmin = isAdmin; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.password_update_time * * @return the value of user.password_update_time * * @mbg.generated */ public Date getPasswordUpdateTime() { return passwordUpdateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.password_update_time * * @param passwordUpdateTime the value for user.password_update_time * * @mbg.generated */ public void setPasswordUpdateTime(Date passwordUpdateTime) { this.passwordUpdateTime = passwordUpdateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.attempt_times * * @return the value of user.attempt_times * * @mbg.generated */ public Integer getAttemptTimes() { return attemptTimes; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.attempt_times * * @param attemptTimes the value for user.attempt_times * * @mbg.generated */ public void setAttemptTimes(Integer attemptTimes) { this.attemptTimes = attemptTimes; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.locked_time * * @return the value of user.locked_time * * @mbg.generated */ public Date getLockedTime() { return lockedTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.locked_time * * @param lockedTime the value for user.locked_time * * @mbg.generated */ public void setLockedTime(Date lockedTime) { this.lockedTime = lockedTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.organization_id * * @return the value of user.organization_id * * @mbg.generated */ public String getOrganizationId() { return organizationId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.organization_id * * @param organizationId the value for user.organization_id * * @mbg.generated */ public void setOrganizationId(String organizationId) { this.organizationId = organizationId == null ? null : organizationId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column user.is_super_admin * * @return the value of user.is_super_admin * * @mbg.generated */ public Boolean getIsSuperAdmin() { return isSuperAdmin; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column user.is_super_admin * * @param isSuperAdmin the value for user.is_super_admin * * @mbg.generated */ public void setIsSuperAdmin(Boolean isSuperAdmin) { this.isSuperAdmin = isSuperAdmin; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table user * * @mbg.generated */ @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(", email=").append(email); sb.append(", password=").append(password); sb.append(", loginType=").append(loginType); sb.append(", status=").append(status); sb.append(", expirationDate=").append(expirationDate); sb.append(", createTime=").append(createTime); sb.append(", updateTime=").append(updateTime); sb.append(", isAdmin=").append(isAdmin); sb.append(", passwordUpdateTime=").append(passwordUpdateTime); sb.append(", attemptTimes=").append(attemptTimes); sb.append(", lockedTime=").append(lockedTime); sb.append(", organizationId=").append(organizationId); sb.append(", isSuperAdmin=").append(isSuperAdmin); sb.append("]"); return sb.toString(); } }