package com.landtool.lanbase.modules.res.dao;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import com.landtool.lanbase.modules.res.entity.Role_ResCatalog;
|
@Mapper
|
public interface RoleResCatalogMapper {
|
public Integer insertRoleResCatalogRel(Role_ResCatalog bean);
|
|
public List<Role_ResCatalog> queryRoleResCatalogRel(Role_ResCatalog bean);
|
|
public Integer updateRoleResCatalogRel(Role_ResCatalog bean);
|
|
|
}
|