package com.dy.pmsGlobal.daoBa; import com.dy.pmsGlobal.pojoBa.BaLog; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; @Mapper public interface BaLogMapper { int insert(BaLog record); int insertSelective(BaLog record); BaLog selectByPrimaryKey(Long id); List selectSome(Map params); Long selectSomeCount(Map params); }