From 73d7f7aed91cdaaaf61e6177dc02c71ef5ca51e8 Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期三, 03 九月 2025 16:42:14 +0800 Subject: [PATCH] fix: 修复轨迹查询,界面报401的问题 --- ruoyi-system/src/main/java/com/ruoyi/system/service/impl/PayInfoServiceImpl.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/PayInfoServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/PayInfoServiceImpl.java index a8ae516..f3aa7d9 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/PayInfoServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/PayInfoServiceImpl.java @@ -1,6 +1,7 @@ package com.ruoyi.system.service.impl; import java.util.List; +import java.util.Map; import com.ruoyi.common.annotation.DataSource; import com.ruoyi.common.enums.DataSourceType; @@ -29,4 +30,17 @@ public List<PayInfo> selectPayInfoByServiceOrdIDDt(String serviceOrdIDDt) { return payInfoMapper.selectPayInfoByServiceOrdIDDt(serviceOrdIDDt); } + + /** + * 鏍规嵁鏈嶅姟璁㈠崟ID鏌ヨ鏈�鏂板彂绁ㄤ俊鎭� + * + * @param serviceOrderId 鏈嶅姟璁㈠崟ID + * @return 鏈�鏂板彂绁ㄤ俊鎭� + */ + @Override + public Map<String, Object> selectLatestInvoiceInfo(String serviceOrderId) { + return payInfoMapper.selectLatestInvoiceInfo(serviceOrderId); + } + + } \ No newline at end of file -- Gitblit v1.9.1