feat: 重构代码架构 + 新增报表/跟单/输赢统计功能
- 拆分 HomeController → TransactionController, ReportWebController, FollowPlanController - 新增 Service 层: TransactionService, ReportService, FollowPlanService - pk10.php JS 抽离为 4 个独立文件 (sound/race/bet/poll) - 前台新增报表查询页面 (/report) + 跟单计划页面 (/follow-plan) - 后台新增跟单计划管理 + 用户输赢明细统计 - 封盘状态显示倒计时 (x:xx) - 音效仅在开奖弹窗打开时播放 - 路由按模块分组整理 - autoload 支持 App\Services 命名空间
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
ALTER TABLE `bot_push_logs`
|
||||
ADD COLUMN `claim_token` varchar(64) DEFAULT NULL COMMENT '推送领取令牌' AFTER `error_message`,
|
||||
ADD COLUMN `claimed_at` datetime DEFAULT NULL COMMENT '推送领取时间' AFTER `claim_token`;
|
||||
|
||||
ALTER TABLE `bot_push_logs`
|
||||
ADD KEY `idx_claim_token` (`claim_token`),
|
||||
ADD KEY `idx_claimed_at` (`claimed_at`);
|
||||
Reference in New Issue
Block a user