|  |  | 
 |  |  | package com.dy.pmsGlobal.daoBa; | 
 |  |  |  | 
 |  |  | import com.dy.pmsGlobal.pojoBa.BaLog; | 
 |  |  | import com.dy.pmsGlobal.pojoBa.BaPrivilege; | 
 |  |  | import org.apache.ibatis.annotations.MapKey; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  | import java.util.Map; | 
 |  |  |  | 
 |  |  | @Mapper | 
 |  |  | public interface BaPrivilegeMapper { | 
 |  |  | 
 |  |  |      * @return List<BaPrivilege> | 
 |  |  |      */ | 
 |  |  |     List<BaPrivilege> selectAll() ; | 
 |  |  |  | 
 |  |  |     List<BaPrivilege> selectSome(Map<String, Object> params); | 
 |  |  |  | 
 |  |  |     Long selectSomeCount(Map<String, Object> params); | 
 |  |  |  | 
 |  |  |     List<BaPrivilege> selectByIds(List<String> ids) ; | 
 |  |  |  | 
 |  |  |     /** |