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 */ List selectSingle() ; int insert(BaSysSet record); int insertSelective(BaSysSet record); }