zhubaomin
2025-04-08 5f54ba90abcc0ccf1b578472eac54fc98056767c
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoOp/OpeReportReplyMapper.java
New file
@@ -0,0 +1,35 @@
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<OpeReportReply> {
    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);
}