26 lines
667 B
Java
26 lines
667 B
Java
|
|
package com.klp.mapper;
|
||
|
|
|
||
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
||
|
|
import com.klp.domain.WmsReportDetail;
|
||
|
|
import com.klp.domain.vo.WmsReportDetailVo;
|
||
|
|
import org.apache.ibatis.annotations.Select;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 设计项目汇报详情Mapper接口
|
||
|
|
*
|
||
|
|
* @author ruoyi
|
||
|
|
* @date 2025-05-13
|
||
|
|
*/
|
||
|
|
public interface WmsReportDetailMapper extends BaseMapperPlus<WmsReportDetailMapper, WmsReportDetail, WmsReportDetailVo> {
|
||
|
|
@Select("SELECT url FROM sys_oss WHERE oss_id = #{ossId}")
|
||
|
|
String selectImageUrlByOssId(String ossId);
|
||
|
|
|
||
|
|
|
||
|
|
WmsReportDetailVo selectVoByIdPlus(Long id);
|
||
|
|
|
||
|
|
List<WmsReportDetailVo> queryByProjectId(Long projectId);
|
||
|
|
|
||
|
|
}
|