From d011dce3ea8cb03585f066c2cd7b6cb0de8595f5 Mon Sep 17 00:00:00 2001 From: wxy <14293288+zysysys@user.noreply.gitee.com> Date: Tue, 27 Aug 2024 19:29:13 +0800 Subject: [PATCH] =?UTF-8?q?```refactor(payments):=20=E4=BB=8ESysUserPaymen?= =?UTF-8?q?t=E8=A1=A8=E8=BF=81=E7=A7=BB=E6=95=B0=E6=8D=AE=E5=88=B0pay=5Fme?= =?UTF-8?q?nt=5Fparam=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将支付参数数据从sys_user_payment表中的subject和total_amount字段迁移至pay_ment_param表, 同时新增create_time字段以记录创建时间。此更改涉及SQL查询结构的调整,以适应支付参数存储的新策略。 ``` --- src/main/resources/mapper/system/SysUserMapper.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mapper/system/SysUserMapper.xml b/src/main/resources/mapper/system/SysUserMapper.xml index 6fe3717..88338dd 100644 --- a/src/main/resources/mapper/system/SysUserMapper.xml +++ b/src/main/resources/mapper/system/SysUserMapper.xml @@ -194,9 +194,9 @@ id, out_trade_no, product_code, - subject, - total_amount, - from sys_user_payment + create_time, + total_amount + from pay_ment_param