package com.yssh.mapper; import java.util.List; import com.yssh.entity.ExpPoint; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface ExpPointMapper { List selectList(); List selectByExpSiteNumbers(@Param("expSiteNumbers") List expSiteNumbers); }