package com.dy.pipIrrGlobal.daoOp; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoOp.OpeInspect; import com.dy.pipIrrGlobal.voOp.VoInspect; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author ZhuBaoMin * @date 2024-09-24 10:07 * @LastEditTime 2024-09-24 10:07 * @Description */ @Mapper public interface OpeInspectMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(OpeInspect record); int insertSelective(OpeInspect record); OpeInspect selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(OpeInspect record); int updateByPrimaryKey(OpeInspect record); /** * 巡检查询 * @param params * @return */ Long getInspectsCount(Map params); /** * 巡检查询 * @param params * @return */ List getInspects(Map params); }