package com.dy.pipIrrGlobal.daoOp; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoOp.OpeReportReply; import com.dy.pipIrrGlobal.voOp.VoIssueReportReply; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2024-11-12 14:36 * @LastEditTime 2024-11-12 14:36 * @Description */ @Mapper public interface OpeReportReplyMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(OpeReportReply record); int insertSelective(OpeReportReply record); OpeReportReply selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(OpeReportReply record); int updateByPrimaryKey(OpeReportReply record); /** * 根据问题上报ID获取上报回复信息 * @param reportId * @return */ VoIssueReportReply getReportReplyByReportId(Long reportId); }