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