ModuleDao.java 538 Bytes
Newer Older
刘弈臻's avatar
刘弈臻 committed
1 2 3 4 5 6 7
package com.govmade.modules.system.dao;

import java.util.Set;

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

Fred's avatar
Fred committed
8
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
刘弈臻's avatar
刘弈臻 committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import com.govmade.modules.system.entity.ModuleEntity;

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

	/**
	 * 删除或批量删除
	 */
	void deleteBatch(@Param("ids") Set<Long> ids);
	
}