2024-09-02 09:39:27 +08:00
|
|
|
package com.gunshi.project.xyt.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2024-09-02 14:50:33 +08:00
|
|
|
import com.gunshi.project.xyt.entity.vo.StRzVo;
|
2024-09-02 09:39:27 +08:00
|
|
|
import com.gunshi.project.xyt.model.StPptnRH;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
2024-09-02 14:50:33 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
2024-09-02 09:39:27 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 描述: 降雨量小时表
|
|
|
|
|
* author: cxw
|
|
|
|
|
* date: 2024-09-02 09:34:31
|
|
|
|
|
*/
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface StPptnRHMapper extends BaseMapper<StPptnRH> {
|
|
|
|
|
|
2024-09-02 14:50:33 +08:00
|
|
|
List<StPptnRH> queryList(@Param("start") String start,@Param("end") String end);
|
|
|
|
|
|
|
|
|
|
List<StRzVo> queryRzList(@Param("start") String start,@Param("end") String end);
|
2024-09-02 09:39:27 +08:00
|
|
|
}
|