物流处理 完成了顺丰api对接

This commit is contained in:
2025-07-21 23:39:30 +08:00
parent ca0ec753c7
commit b1914b7edc
23 changed files with 1581 additions and 4 deletions

View File

@@ -44,4 +44,24 @@
</select>
<select id="queryByProjectId" resultType="com.ruoyi.oa.domain.vo.OaReportDetailVo">
select ord.detail_id,
ord.summary_id,
ord.device_code,
ord.category,
ord.device_description,
ord.report_detail,
ord.oss_ids,
ord.create_by,
ord.create_time,
ord.update_by,
ord.update_time,
ord.del_flag,
ord.remark
from oa_report_detail ord
left join oa_report_summary ors on ors.summary_id = ord.summary_id
where project_id = #{projectId}
</select>
</mapper>