From 00c657c1f695771d625e28d958bd3e57fb56da58 Mon Sep 17 00:00:00 2001
From: wzp <2040239371@qq.com>
Date: 星期六, 03 五月 2025 19:46:20 +0800
Subject: [PATCH] feat: 新增发票和评价
---
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