package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.xyt.entity.so.DataQueryCommonSo; import com.gunshi.project.xyt.entity.vo.AttResBaseVo; import com.gunshi.project.xyt.entity.vo.AttResMonitorVo; import com.gunshi.project.xyt.model.AttResBase; import com.gunshi.project.xyt.model.StImgRReal; import com.gunshi.project.xyt.model.StRsvrR; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; /** * 描述: 水库基本信息表 * author: xusan * date: 2024-07-08 15:44:07 */ @Mapper public interface AttResBaseMapper extends BaseMapper { @Select(""" """) List queryList(); @Select(""" """) List drpData(@Param("obj") DataQueryCommonSo dataQueryCommonSo); @Select(""" """) List rzData(@Param("obj") DataQueryCommonSo dataQueryCommonSo); @Select(""" """) List realImg(@Param("resCode") String resCode); @Select(""" """) List queryRzList(@Param("stcd") String stcd, @Param("stm") String startTime, @Param("etm") String endTime); }