Zhiqim Manager(知启蒙管理台)是知启蒙框架中最核心的基础组件,大部分后台组件和产品都依赖该组件。因为管理台提供了核心的系统配置、菜单、操作员、部门、角色等权限功能,以及6种皮肤样式可供选择

森中灵 最后提交于4月前 修复切换frame模式时未情况includeUrl
ZmrDeptType.java2KB
/*
 * 版权所有 (C) 2015 知启蒙(ZHIQIM) 保留所有权利。[遇见知启蒙,邂逅框架梦]
 * 
 * https://zhiqim.org/project/zhiqim_components/zhiqim_manager.htm
 *
 * Zhiqim Manager 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_DEPT_TYPE》
 */
@AnAlias("ZmrDeptType")
@AnNew
@AnTable(table="ZMR_DEPT_TYPE", key="DEPT_TYPE", type="InnoDB")
public class ZmrDeptType implements Serializable
{
    private static final long serialVersionUID = 1L;

    @AnTableField(column="DEPT_TYPE", type="long", notNull=true)    private long deptType;    //1.部门类型编号
    @AnTableField(column="DEPT_TYPE_NAME", type="string,50", notNull=true)    private String deptTypeName;    //2.部门类型名称
    @AnTableField(column="DEPT_TYPE_VALID", type="boolean", notNull=true)    private boolean deptTypeValid;    //3.部门类型状态
    @AnTableField(column="DEPT_TYPE_SEQ", type="int", notNull=true)    private int deptTypeSeq;    //4.部门类型排序数
    @AnTableField(column="DEPT_TYPE_SYS", type="boolean", notNull=true)    private boolean deptTypeSys;    //5.部门类型是否系统定义

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

    public long getDeptType()
    {
        return deptType;
    }

    public ZmrDeptType setDeptType(long deptType)
    {
        this.deptType = deptType;
        return this;
    }

    public String getDeptTypeName()
    {
        return deptTypeName;
    }

    public ZmrDeptType setDeptTypeName(String deptTypeName)
    {
        this.deptTypeName = deptTypeName;
        return this;
    }

    public boolean isDeptTypeValid()
    {
        return deptTypeValid;
    }

    public ZmrDeptType setDeptTypeValid(boolean deptTypeValid)
    {
        this.deptTypeValid = deptTypeValid;
        return this;
    }

    public int getDeptTypeSeq()
    {
        return deptTypeSeq;
    }

    public ZmrDeptType setDeptTypeSeq(int deptTypeSeq)
    {
        this.deptTypeSeq = deptTypeSeq;
        return this;
    }

    public boolean isDeptTypeSys()
    {
        return deptTypeSys;
    }

    public ZmrDeptType setDeptTypeSys(boolean deptTypeSys)
    {
        this.deptTypeSys = deptTypeSys;
        return this;
    }
}