xin
2025-07-15 d96bafe1a76327d61a32c2c3998b6dc7b888a9ce
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);