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-03 11:25:29 +08:00
|
|
|
import com.gunshi.project.xyt.model.StPptnRD;
|
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-03 11:22:34 +08:00
|
|
|
|
|
|
|
|
List<StPptnRD> queryDayDrp(@Param("year") Integer year);
|
2024-09-03 11:24:04 +08:00
|
|
|
|
2024-09-02 16:26:32 +08:00
|
|
|
List<StPptnRH> reorganizePptnRHData(@Param("stcd") String stcd, @Param("maxData") StPptnRH maxData);
|
|
|
|
|
|
|
|
|
|
StPptnRH getMaxData(String stcd);
|
2024-09-03 15:43:05 +08:00
|
|
|
|
|
|
|
|
List<StPptnRD> queryDayRz(@Param("year") String year);
|
2024-09-02 16:26:32 +08:00
|
|
|
}
|