```feat(sys-user): 添加导出支付记录功能

新增用户导出支付记录功能,通过POST请求实现支付记录的导出。实现代码包括权限验证、日志记录和具体的导出逻辑。
```
master
wxy 2024-08-29 15:53:51 +08:00
parent b7c22080da
commit fd752340b5
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@
<insert id="addRecords">
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});
</insert>