```refactor(payments): 从SysUserPayment表迁移数据到pay_ment_param表

将支付参数数据从sys_user_payment表中的subject和total_amount字段迁移至pay_ment_param表,
同时新增create_time字段以记录创建时间。此更改涉及SQL查询结构的调整,以适应支付参数存储的新策略。
```
master
wxy 2024-08-27 19:29:13 +08:00
parent 5bb3949e28
commit d011dce3ea
1 changed files with 3 additions and 3 deletions

View File

@ -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
</select>