oying-system/src/main/java/com/oying/modules/system/mapper/RoleDeptMapper.java
@@ -1,6 +1,5 @@ package com.oying.modules.system.mapper; import com.oying.modules.system.domain.Dept; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.Set; @@ -11,7 +10,7 @@ */ @Mapper public interface RoleDeptMapper { void insertData(@Param("roleId") Long roleId, @Param("depts") Set<Dept> depts); void insertData(@Param("roleId") Long roleId, @Param("ids") Set<Long> ids); void deleteByRoleId(@Param("roleId") Long roleId);