package com.dy.pipIrrGlobal.daoOp; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoOp.OpeIssueReport; import com.dy.pipIrrGlobal.voOp.VoIssueReport; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author ZhuBaoMin * @date 2024-11-11 16:18 * @LastEditTime 2024-11-11 16:18 * @Description */ @Mapper public interface OpeIssueReportMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(OpeIssueReport record); int insertSelective(OpeIssueReport record); OpeIssueReport selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(OpeIssueReport record); int updateByPrimaryKey(OpeIssueReport record); /** * 根据指定条件获取巡检员问题上报数量 * @param params * @return */ Long getIssueReportsCount(Map params); /** * 根据指定条件获取巡检员问题上报 * @param params * @return */ List getIssueReports(Map params); }