From 9f3485f2e619f011d17952b4e2dac09ec702b724 Mon Sep 17 00:00:00 2001 From: wanglizhong <wlz> Date: 星期三, 14 五月 2025 17:48:27 +0800 Subject: [PATCH] fix:gps 查询修改超时时间 180000 --- 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