package com.yssh.mapper; import com.yssh.entity.Weather; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface WeatherMapper { List query(@Param("begin") String begin, @Param("end") String end); List getAll(); int insert(Weather weather); int delete(String id); }