- 新增物流预览和快递问题相关的实体类、Mapper、Service和Controller - 实现物流预览列表查询、导出、详情获取、新增、修改和删除功能 - 实现快递问题列表查询、详情获取、新增、修改和删除功能 - 添加百世、顺丰、申通快递的路由查询工具类 - 更新pom.xml,添加fastjson2等依赖 - 修改application-stage.yml,禁用xxl-job
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);
|
|
|
|
}
|