xin
2025-06-04 9931d6f56816aecb09333cef2d12777c08793547
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
 
/**
 * @author Z
 * @date 2023-06-20
 */
@Mapper
public interface RoleDeptMapper {
    void insertData(@Param("roleId") Long roleId, @Param("depts") Set<Dept> depts);
 
    void deleteByRoleId(@Param("roleId") Long roleId);
 
    void deleteByRoleIds(@Param("roleIds") Set<Long> roleIds);
}