32 lines
950 B
Java
32 lines
950 B
Java
package com.gunshi.project.hsz.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.gunshi.project.hsz.common.model.vo.StRzVo;
|
|
import com.gunshi.project.hsz.model.StPptnRD;
|
|
import com.gunshi.project.hsz.model.StPptnRH;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 描述: 降雨量小时表
|
|
* author: cxw
|
|
* date: 2024-09-02 09:34:31
|
|
*/
|
|
@Mapper
|
|
public interface StPptnRHMapper extends BaseMapper<StPptnRH> {
|
|
|
|
List<StPptnRH> queryList(@Param("start") String start,@Param("end") String end);
|
|
|
|
List<StRzVo> queryRzList(@Param("start") String start,@Param("end") String end);
|
|
|
|
List<StPptnRD> queryDayDrp(@Param("year") Integer year);
|
|
|
|
List<StPptnRH> reorganizePptnRHData(@Param("stcd") String stcd, @Param("maxData") StPptnRH maxData);
|
|
|
|
StPptnRH getMaxData(String stcd);
|
|
|
|
List<StPptnRD> queryDayRz(@Param("year") String year);
|
|
}
|