1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dy.pmsGlobal.daoBa;
 
import com.dy.pmsGlobal.pojoBa.BaSysSet;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface BaSysSetMapper {
    /**
     * 查询某个用户所隶属于的角色
     * @return List<BaSysSet>
     */
    List<BaSysSet> selectSingle() ;
 
    int insert(BaSysSet record);
 
    int insertSelective(BaSysSet record);
}