From ecef3df4890be54c1da2a8a4fc1c8c1f50f1c263 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期一, 07 四月 2025 15:41:47 +0800 Subject: [PATCH] 式样代码管理 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoOp/OpeIssueReportMapper.java | 73 ++++++++++++++++++++++++++++++++++++ 1 files changed, 73 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoOp/OpeIssueReportMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoOp/OpeIssueReportMapper.java new file mode 100644 index 0000000..d6de8fb --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoOp/OpeIssueReportMapper.java @@ -0,0 +1,73 @@ +package com.dy.pipIrrGlobal.daoOp; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.dy.pipIrrGlobal.pojoOp.OpeIssueReport; +import com.dy.pipIrrGlobal.voOp.VoIssueReport_temp; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +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<OpeIssueReport> { + 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<VoIssueReport_temp> getIssueReports(Map<?, ?> params); + + /** + * 鏍规嵁涓婃姤ID鍙婂贰妫�鍛業D鑾峰彇鏈垹闄ょ殑涓婃姤锛屽垹闄や笂鎶ュ垽鏂娇鐢� + * @param issueReportId + * @param inspectorId + * @return + */ + OpeIssueReport getReport(@Param("issueReportId")Long issueReportId, @Param("inspectorId")Long inspectorId); + + /** + * 閫昏緫鍒犻櫎涓�涓啘鎴烽棶棰樹笂鎶� + * @param issueReportId + * @return + */ + /** + * 閫昏緫鍒犻櫎涓�涓贰妫�鍛橀棶棰樹笂鎶� + * @param issueReportId + * @return + */ + Integer deleteIssueReport(Long issueReportId); + + /** + * 鏍规嵁闂涓婃姤璁板綍涓婚敭鑾峰彇鑾峰彇宸℃鍛橀棶棰樹笂鎶ヨ褰曡鍥惧璞� + * @param issueReportId + * @return + */ + VoIssueReport_temp getIssueReportById(Long issueReportId); +} \ No newline at end of file -- Gitblit v1.8.0