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

net.mingsoft.basic.biz.IModelBiz Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2012-present 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循 铭软科技《服务协议》中的《保密条款》
 */









package net.mingsoft.basic.biz;

import net.mingsoft.base.biz.IBaseBiz;
import net.mingsoft.base.constant.e.BaseEnum;
import net.mingsoft.base.entity.BaseEntity;
import net.mingsoft.basic.entity.ModelEntity;
import net.mingsoft.basic.entity.RoleModelEntity;

import java.util.List;

/**
 * 模块业务接口
 * @author ms dev group
 * @version
 * 版本号:100-000-000
* 创建日期:2012-03-15
* 历史修订:
*/ public interface IModelBiz extends IBaseBiz { /** * 根据角色ID查询模块集合 * @param roleId 角色ID * @return 返回模块集合 */ List queryModelByRoleId(int roleId); /** * 根据模块编号查询模块实体 * @param modelCode 模块编号 * @return 返回模块实体 */ ModelEntity getEntityByModelCode(BaseEnum modelCode); /** * 根据模块编号查询模块实体 * @param modelCode 模块编号 * @return 返回模块实体 */ ModelEntity getEntityByModelCode(String modelCode); /** * 根据模块id获取当前项目中的分类模块id,规则根据modelcode定。**99******,只用是第3位与第4位99 * @param modelType 模块类型  * @param modelId 模块ID * @return 返回模块实体 */ ModelEntity getModel(String modelType,int modelId); /** 菜单新增递归方法 * @deprecated 此方法已废弃 推荐使用importModel方法 * @param modelParent 菜单实体 * @param parentIds 父级ids * @param mangerRoleId 管理员id * @param roleModels 角色mode数组 * @param parentId 父级id */ void reModel(ModelEntity modelParent, String parentIds, int mangerRoleId, List roleModels, Integer parentId); /** * 字符串转菜单 * @deprecated 此方法已废弃 推荐使用importModel方法 * @param menuStr 菜单json * @param mangerRoleId 当前管理员的角色id * @param modelId 父级菜单编号,用于导入子菜单设置父级菜单编号 */ void jsonToModel(String menuStr,int mangerRoleId,int modelId); /** * 导入菜单 * @param modelEntity 菜单实体 * @param mangerRoleId 当前管理员的角色id * @param parentIds 父级菜单编号集 * @param modelId 父级菜单编号,用于导入子菜单设置父级菜单编号 */ void importModel(ModelEntity modelEntity, int mangerRoleId, String parentIds, Integer modelId); /** * 修改 * @param model */ void updateEntity(ModelEntity model); /** * 保存 * @param model */ void saveEntity(ModelEntity model); /** * 此方法不动,怕影响其他地方使用 * 查询当前菜单下的一级菜单 * @param modelEntity * @return */ List queryChildList(ModelEntity modelEntity); /** * 查询当前菜单所有的子集菜单和权限集合 * @param modelEntity * @return 菜单集合 */ List queryAllChildList(ModelEntity modelEntity); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy