Zhiqim Account(前端账户管理台)是在ZhiqimManager基础上改造成用于前端注册登录的管理系统,增加组织结构和余额,开放注册组织和组织管理员,可以添加组织内的部门和角色和操作员。并增加该管理台上的一些组件,如充值支付等组件。适用于二级代理管理或该大型组织机构

森中灵 最后提交于9月前 整理为组织方式和替换新的jar
ZmrRole.java3KB
/*
 * 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
 * 
 * https://zhiqim.org/project/zhiqim_components/zhiqim_account.htm
 *
 * Zhiqim Account is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 *          http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 */
package org.zhiqim.manager.dbo;

import java.io.Serializable;

import org.zhiqim.kernel.annotation.AnAlias;
import org.zhiqim.kernel.annotation.AnNew;
import org.zhiqim.kernel.json.Jsons;
import org.zhiqim.orm.annotation.*;

/**
 * 组织角色表 对应表《ZMR_ROLE》
 */
@AnAlias("ZmrRole")
@AnNew
@AnTable(table="ZMR_ROLE", key="ROLE_ID", type="InnoDB")
public class ZmrRole implements Serializable
{
    private static final long serialVersionUID = 1L;

    @AnTableField(column="ORG_ID", type="long", notNull=true)    private long orgId;    //1.组织编号
    @AnTableField(column="ROLE_ID", type="long", notNull=true)    private long roleId;    //2.角色编号
    @AnTableField(column="ROLE_NAME", type="string,32", notNull=true)    private String roleName;    //3.角色名称
    @AnTableField(column="ROLE_TYPE", type="int", notNull=true)    private int roleType;    //4.角色类型,0:普通,1:系统
    @AnTableField(column="ROLE_STATUS", type="int", notNull=true)    private int roleStatus;    //5.角色状态,0:正常,1:停用
    @AnTableField(column="ROLE_SEQ", type="int", notNull=true)    private int roleSeq;    //6.角色序号

    public String toString()
    {
        return Jsons.toString(this);
    }

    public long getOrgId()
    {
        return orgId;
    }

    public ZmrRole setOrgId(long orgId)
    {
        this.orgId = orgId;
        return this;
    }

    public long getRoleId()
    {
        return roleId;
    }

    public ZmrRole setRoleId(long roleId)
    {
        this.roleId = roleId;
        return this;
    }

    public String getRoleName()
    {
        return roleName;
    }

    public ZmrRole setRoleName(String roleName)
    {
        this.roleName = roleName;
        return this;
    }

    public int getRoleType()
    {
        return roleType;
    }

    public ZmrRole setRoleType(int roleType)
    {
        this.roleType = roleType;
        return this;
    }

    public int getRoleStatus()
    {
        return roleStatus;
    }

    public ZmrRole setRoleStatus(int roleStatus)
    {
        this.roleStatus = roleStatus;
        return this;
    }

    public int getRoleSeq()
    {
        return roleSeq;
    }

    public ZmrRole setRoleSeq(int roleSeq)
    {
        this.roleSeq = roleSeq;
        return this;
    }
}