package admin.modules.system.service; import admin.base.CommonService; import admin.modules.system.domain.SysRolesDepts; import java.util.List; /** * @description: SysRolesDeptsService * @date: 2023/7/28 9:47 * @author: wk * @version: 1.0 */ public interface SysRolesDeptsService extends CommonService { List queryDeptIdByRoleId(Long id); List queryRoleIdByDeptId(Long id); boolean removeByRoleId(Long id); boolean removeByDeptId(Long id); }