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; @Mapper public interface AttResBaseMapper extends BaseMapper { int updateBatch(List list); int updateBatchSelective(List list); int batchInsert(@Param("list") List list); int insertOrUpdate(AttResBase record); int insertOrUpdateSelective(AttResBase record); @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); }