From af8cab142a6b15c06e131a8474574dd5b00df982 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期四, 04 十二月 2025 22:09:58 +0800
Subject: [PATCH] feat: 改造微信accesstoken存放在系统配置表中
---
ruoyi-system/src/main/resources/mapper/system/PayInfoMapper.xml | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/resources/mapper/system/PayInfoMapper.xml b/ruoyi-system/src/main/resources/mapper/system/PayInfoMapper.xml
index 26574a8..561cead 100644
--- a/ruoyi-system/src/main/resources/mapper/system/PayInfoMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/PayInfoMapper.xml
@@ -28,4 +28,14 @@
order by PaidMoneyTime desc
</select>
+ <select id="selectLatestInvoiceInfo" parameterType="String" resultType="java.util.Map">
+ select top 1 InvoiceMakeout, AuditStatus
+ from InvoiceData
+ where ServiceOrderIDPK = #{serviceOrderId}
+ </select>
+
+
+
+
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1