ModuleService.java 712 Bytes
Newer Older
刘弈臻's avatar
刘弈臻 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
package com.govmade.modules.system.service;

import java.util.Map;
import java.util.Set;

import com.baomidou.mybatisplus.service.IService;
import com.govmade.common.utils.PageUtils;
import com.govmade.modules.system.entity.ModuleEntity;

/**
 * 系统管理 - 模块设置
 * 
 * @author 刘弈臻
 * @date 2018年8月9日
 */
public interface ModuleService extends IService<ModuleEntity>{

	/**
	 * 分页查询模块
	 */
	PageUtils queryPage(Map<String, Object> params);
	
	/**
	 * 保存或修改模块
	 */
	void save(ModuleEntity module);
	
	/**
	 * 删除模块
	 */
	void deleteBatch(Set<Long> ids);
	
   /**	
	*模块查重
	*/
	Integer checkModule(String name);
}