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

cn.ipokerface.admin.entity.AdminRoleAuthority Maven / Gradle / Ivy

package cn.ipokerface.admin.entity;

import cn.ipokerface.common.model.entity.BaseTableEntity;

/**
 *
 *  [ADMIN_ROLE_AUTHORITY]
 */
public class AdminRoleAuthority extends BaseTableEntity {
    /**
     * 角色ID
     * [ROLE_ID]

     * 2021-04-07T11:29:15.048
     */
    private Long roleId;

    /**
     * 权限ID
     * [AUTHORITY_ID]

     * 2021-04-07T11:29:15.050
     */
    private Long authorityId;

    /**
     * 备注字段
     * [REMARK]

     * 2021-04-07T11:29:15.050
     */
    private String remark;

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column ADMIN_ROLE_AUTHORITY.ROLE_ID
     *
     * @return the value of ADMIN_ROLE_AUTHORITY.ROLE_ID
     *
     * .generated Wed Apr 07 11:29:15 CST 2021
     */
    public Long getRoleId() {
        return roleId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column ADMIN_ROLE_AUTHORITY.ROLE_ID
     *
     * @param roleId the value for ADMIN_ROLE_AUTHORITY.ROLE_ID
     *
     * .generated Wed Apr 07 11:29:15 CST 2021
     */
    public void setRoleId(Long roleId) {
        this.roleId = roleId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column ADMIN_ROLE_AUTHORITY.AUTHORITY_ID
     *
     * @return the value of ADMIN_ROLE_AUTHORITY.AUTHORITY_ID
     *
     * .generated Wed Apr 07 11:29:15 CST 2021
     */
    public Long getAuthorityId() {
        return authorityId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column ADMIN_ROLE_AUTHORITY.AUTHORITY_ID
     *
     * @param authorityId the value for ADMIN_ROLE_AUTHORITY.AUTHORITY_ID
     *
     * .generated Wed Apr 07 11:29:15 CST 2021
     */
    public void setAuthorityId(Long authorityId) {
        this.authorityId = authorityId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column ADMIN_ROLE_AUTHORITY.REMARK
     *
     * @return the value of ADMIN_ROLE_AUTHORITY.REMARK
     *
     * .generated Wed Apr 07 11:29:15 CST 2021
     */
    public String getRemark() {
        return remark;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column ADMIN_ROLE_AUTHORITY.REMARK
     *
     * @param remark the value for ADMIN_ROLE_AUTHORITY.REMARK
     *
     * .generated Wed Apr 07 11:29:15 CST 2021
     */
    public void setRemark(String remark) {
        this.remark = remark;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy