package com.landtool.lanbase.modules.sys.dao;
|
|
import com.landtool.lanbase.modules.sys.entity.Role_ResCatalog;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Mapper
|
@Repository
|
public interface RoleResCatalogMapper {
|
public Integer insertRoleResCatalogRel(Role_ResCatalog bean);
|
|
public List<Role_ResCatalog> queryRoleResCatalogRel(Role_ResCatalog bean);
|
|
public Integer updateRoleResCatalogRel(Role_ResCatalog bean);
|
|
public void batchinsert(List<Role_ResCatalog> rolecatalogrel);
|
|
public void deleteBatch(Long roleId);
|
|
public void deleteBatchByRoleIds(Long[] roleIds);
|
|
|
}
|