From a63afc6bfbebceb4b808dfd79b321dfa99e050e3 Mon Sep 17 00:00:00 2001 From: coolleave Date: Wed, 14 May 2025 08:25:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=BD=E5=B7=A5=E8=BF=9B=E5=BA=A6=E8=AF=A6?= =?UTF-8?q?=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/oa/mapper/OaReportDetailMapper.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ruoyi-oa/src/main/java/com/ruoyi/oa/mapper/OaReportDetailMapper.java diff --git a/ruoyi-oa/src/main/java/com/ruoyi/oa/mapper/OaReportDetailMapper.java b/ruoyi-oa/src/main/java/com/ruoyi/oa/mapper/OaReportDetailMapper.java new file mode 100644 index 0000000..d64d492 --- /dev/null +++ b/ruoyi-oa/src/main/java/com/ruoyi/oa/mapper/OaReportDetailMapper.java @@ -0,0 +1,17 @@ +package com.ruoyi.oa.mapper; + +import com.ruoyi.oa.domain.OaReportDetail; +import com.ruoyi.oa.domain.vo.OaReportDetailVo; +import com.ruoyi.common.core.mapper.BaseMapperPlus; +import org.apache.ibatis.annotations.Select; + +/** + * 设计项目汇报详情Mapper接口 + * + * @author ruoyi + * @date 2025-05-13 + */ +public interface OaReportDetailMapper extends BaseMapperPlus { + @Select("SELECT url FROM sys_oss WHERE oss_id = #{ossId}") + String selectImageUrlByOssId(String ossId); +}