refactor(account): 重构账户冻结功能实现

- 更新冻结类型枚举说明,统一为token和RMB类型
- 添加日志记录功能并引入常量定义
- 重构创建冻结单方法,增加参数验证和业务流程优化
- 重构释放冻结单方法,完善金额计算和账户更新逻辑
- 修改模型价格查询接口返回类型为列表
- 添加支付订单和系统日志查询条件字段
- 调整应用配置文件环境设置和Redis连接参数
This commit is contained in:
wangzhiwei 2026-04-24 17:24:48 +08:00
parent a608b7a754
commit a8faaebc79
2 changed files with 5 additions and 5 deletions

View File

@ -2,9 +2,9 @@
common: common:
# Redis配置 # Redis配置
redis: redis:
host: 127.0.0.1 # host: 127.0.0.1
port: 6379 # port: 6379
# host: 43.248.97.19 host: 43.248.97.19
# port: 16379 port: 16379
password: 654321 password: 654321
database: 1 database: 1

View File

@ -1,6 +1,6 @@
spring: spring:
profiles: profiles:
active: dev active: prod
application: application:
name: agentSkills name: agentSkills
version: 1.0.0 version: 1.0.0