This commit is contained in:
sion
2026-04-23 00:44:39 +08:00
parent 685202dd55
commit 8047cfaa76
209 changed files with 2660 additions and 5560 deletions

View File

@@ -161,6 +161,8 @@ CREATE TABLE `account_fund` (
`frozen` decimal(20,8) NOT NULL DEFAULT '0.00000000' COMMENT '冻结金额',
`total_deposit` decimal(20,8) NOT NULL DEFAULT '0.00000000' COMMENT '累计充值',
`total_withdraw` decimal(20,8) NOT NULL DEFAULT '0.00000000' COMMENT '累计提现',
`total_withdraw_profit` decimal(20,8) NOT NULL DEFAULT '0.00000000' COMMENT '累计已提现盈利和奖励',
`first_deposit_time` datetime DEFAULT NULL COMMENT '首次充值完成时间',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),