liurunyu
2024-04-15 a9e11d99db3ba48ad6367449d19f6320c31f2f34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 insert(BaRolePrivilege record);
 
    int insertSelective(BaRolePrivilege record);
}