From fd752340b50e5dc91d231879290496d0db05f9ba Mon Sep 17 00:00:00 2001 From: wxy <14293288+zysysys@user.noreply.gitee.com> Date: Thu, 29 Aug 2024 15:53:51 +0800 Subject: [PATCH] =?UTF-8?q?```feat(sys-user):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E6=94=AF=E4=BB=98=E8=AE=B0=E5=BD=95=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增用户导出支付记录功能,通过POST请求实现支付记录的导出。实现代码包括权限验证、日志记录和具体的导出逻辑。 ``` --- src/main/resources/mapper/system/SysUserMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/mapper/system/SysUserMapper.xml b/src/main/resources/mapper/system/SysUserMapper.xml index 88338dd..d75d98f 100644 --- a/src/main/resources/mapper/system/SysUserMapper.xml +++ b/src/main/resources/mapper/system/SysUserMapper.xml @@ -238,7 +238,7 @@ - INSERT INTO `wangxinyuan`.`pay_ment_param` (`out_trade_no`, `total_amount`, `create_time`, `product_code`) + INSERT INTO `three-groups`.`pay_ment_param` (`out_trade_no`, `total_amount`, `create_time`, `product_code`) VALUES (#{outTradeNo}, #{totalAmount}, now(), #{productCode});