From 42bc5219b6d14c6aa9ed7175ec9dc818aef7c43b Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期一, 19 五月 2025 17:22:22 +0800 Subject: [PATCH] fix: 增加预估距离 --- 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