刘小明
2024-09-24 2331d50cf12f0b8c882e6850d3a6a11baf4985e6
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.dy.pmsGlobal.daoBa;
 
import com.dy.pmsGlobal.pojoBa.BaUserRole;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface BaUserRoleMapper {
    int insert(BaUserRole record);
 
    int insertSelective(BaUserRole record);
 
    void deleteByUserId(Long userId) ;
}