All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kedauis.system.model.SysUser Maven / Gradle / Ivy

The newest version!
package com.kedauis.system.model;

import java.io.Serializable;

public class SysUser implements Serializable{

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.user_id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String userId;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.user_name
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String userName;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.password
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String password;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.dept_id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String deptId;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.user_duty
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String userDuty;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.user_type
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String userType;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.user_role
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String userRole;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.sex
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String sex;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.email
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String email;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.mobile_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String mobilePhone;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.home_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String homePhone;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.office_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String officePhone;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.is_super
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String isSuper;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.is_enable
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private String isEnable;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column sys_user.id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    private Integer id;

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.user_id
     *
     * @return the value of sys_user.user_id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getUserId() {
        return userId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.user_id
     *
     * @param userId the value for sys_user.user_id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setUserId(String userId) {
        this.userId = userId == null ? null : userId.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.user_name
     *
     * @return the value of sys_user.user_name
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getUserName() {
        return userName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.user_name
     *
     * @param userName the value for sys_user.user_name
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    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 sys_user.password
     *
     * @return the value of sys_user.password
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getPassword() {
        return password;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.password
     *
     * @param password the value for sys_user.password
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    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 sys_user.dept_id
     *
     * @return the value of sys_user.dept_id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getDeptId() {
        return deptId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.dept_id
     *
     * @param deptId the value for sys_user.dept_id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setDeptId(String deptId) {
        this.deptId = deptId == null ? null : deptId.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.user_duty
     *
     * @return the value of sys_user.user_duty
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getUserDuty() {
        return userDuty;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.user_duty
     *
     * @param userDuty the value for sys_user.user_duty
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setUserDuty(String userDuty) {
        this.userDuty = userDuty == null ? null : userDuty.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.user_type
     *
     * @return the value of sys_user.user_type
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getUserType() {
        return userType;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.user_type
     *
     * @param userType the value for sys_user.user_type
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setUserType(String userType) {
        this.userType = userType == null ? null : userType.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.user_role
     *
     * @return the value of sys_user.user_role
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getUserRole() {
        return userRole;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.user_role
     *
     * @param userRole the value for sys_user.user_role
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setUserRole(String userRole) {
        this.userRole = userRole == null ? null : userRole.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.sex
     *
     * @return the value of sys_user.sex
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getSex() {
        return sex;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.sex
     *
     * @param sex the value for sys_user.sex
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setSex(String sex) {
        this.sex = sex == null ? null : sex.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.email
     *
     * @return the value of sys_user.email
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getEmail() {
        return email;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.email
     *
     * @param email the value for sys_user.email
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    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 sys_user.mobile_phone
     *
     * @return the value of sys_user.mobile_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getMobilePhone() {
        return mobilePhone;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.mobile_phone
     *
     * @param mobilePhone the value for sys_user.mobile_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setMobilePhone(String mobilePhone) {
        this.mobilePhone = mobilePhone == null ? null : mobilePhone.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.home_phone
     *
     * @return the value of sys_user.home_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getHomePhone() {
        return homePhone;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.home_phone
     *
     * @param homePhone the value for sys_user.home_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setHomePhone(String homePhone) {
        this.homePhone = homePhone == null ? null : homePhone.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.office_phone
     *
     * @return the value of sys_user.office_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getOfficePhone() {
        return officePhone;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.office_phone
     *
     * @param officePhone the value for sys_user.office_phone
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setOfficePhone(String officePhone) {
        this.officePhone = officePhone == null ? null : officePhone.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.is_super
     *
     * @return the value of sys_user.is_super
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getIsSuper() {
        return isSuper;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.is_super
     *
     * @param isSuper the value for sys_user.is_super
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setIsSuper(String isSuper) {
        this.isSuper = isSuper == null ? null : isSuper.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.is_enable
     *
     * @return the value of sys_user.is_enable
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public String getIsEnable() {
        return isEnable;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.is_enable
     *
     * @param isEnable the value for sys_user.is_enable
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setIsEnable(String isEnable) {
        this.isEnable = isEnable == null ? null : isEnable.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column sys_user.id
     *
     * @return the value of sys_user.id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public Integer getId() {
        return id;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column sys_user.id
     *
     * @param id the value for sys_user.id
     *
     * mbggenerated Wed Nov 29 21:13:50 CST 2017
     */
    public void setId(Integer id) {
        this.id = id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy