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

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

package cn.ipokerface.admin.entity;

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

/**
 *
 *  [ADMIN_ACCOUNT_ROLE]
 */
public class AdminAccountRole extends BaseTableEntity {
    /**
     * 账号ID
     * [ACCOUNT_ID]

     * 2021-04-07T11:29:31.103
     */
    private Long accountId;

    /**
     * 角色ID
     * [ROLE_ID]

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

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

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

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column ADMIN_ACCOUNT_ROLE.ACCOUNT_ID
     *
     * @return the value of ADMIN_ACCOUNT_ROLE.ACCOUNT_ID
     *
     * .generated Wed Apr 07 11:29:31 CST 2021
     */
    public Long getAccountId() {
        return accountId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column ADMIN_ACCOUNT_ROLE.ACCOUNT_ID
     *
     * @param accountId the value for ADMIN_ACCOUNT_ROLE.ACCOUNT_ID
     *
     * .generated Wed Apr 07 11:29:31 CST 2021
     */
    public void setAccountId(Long accountId) {
        this.accountId = accountId;
    }

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

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column ADMIN_ACCOUNT_ROLE.ROLE_ID
     *
     * @param roleId the value for ADMIN_ACCOUNT_ROLE.ROLE_ID
     *
     * .generated Wed Apr 07 11:29:31 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_ACCOUNT_ROLE.REMARK
     *
     * @return the value of ADMIN_ACCOUNT_ROLE.REMARK
     *
     * .generated Wed Apr 07 11:29:31 CST 2021
     */
    public String getRemark() {
        return remark;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy