liuxm
2024-06-03 4e254da6b41fb31d3329f8022dab8d8f29180d97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dy.pmsGlobal.daoBa;
 
import com.dy.pmsGlobal.pojoBa.BaRolePrivilege;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface BaRolePrivilegeMapper {
    int deleteByPrimaryKey(@Param("roleId") Long roleId, @Param("privilegeId") Long privilegeId);
    int deleteByRoleId(@Param("roleId") Long roleId);
 
    int insert(BaRolePrivilege record);
 
    int insertSelective(BaRolePrivilege record);
}