add count easypay

This commit is contained in:
2026-01-09 14:04:33 +08:00
parent f079980608
commit 2ca14de27e
14 changed files with 211 additions and 62 deletions

View File

@@ -34,8 +34,8 @@ $tables = @(
# "agent_order", # 代理订单
# "agent_product_config", # 产品配置
# "agent_short_link", # 短链接
"agent_wallet", # 钱包
"agent_withdraw" # 提现
# "agent_wallet", # 钱包
# "agent_withdraw" # 提现
# ============================================
# 业务功能表
@@ -44,7 +44,7 @@ $tables = @(
# "example", # 示例
# "feature", # 功能
# "global_notifications", # 全局通知
# "order", # 订单
"order" # 订单
# "order_refund", # 订单退款
# "product", # 产品
# "product_feature", # 产品功能
@@ -55,6 +55,7 @@ $tables = @(
# "user", # 用户
# "user_auth", # 用户认证
# "user_temp" # 临时用户
)
# 为每个表生成模型

View File

@@ -0,0 +1,5 @@
-- 为 order 表添加备注字段
-- 用于记录易支付使用的渠道号等信息
ALTER TABLE `order`
ADD COLUMN `remark` VARCHAR(255) NULL COMMENT '备注信息(如易支付渠道号)' AFTER `delete_time`;