Initial commit: Telegram Management System
Some checks failed
Deploy / deploy (push) Has been cancelled

Full-stack web application for Telegram management
- Frontend: Vue 3 + Vben Admin
- Backend: NestJS
- Features: User management, group broadcast, statistics

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
你的用户名
2025-11-04 15:37:50 +08:00
commit 237c7802e5
3674 changed files with 525172 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- Adds extended fields required by the proxy platform configuration wizard
ALTER TABLE `proxy_platform`
ADD COLUMN `displayName` VARCHAR(255) NULL AFTER `platform`,
ADD COLUMN `connectionStatus` VARCHAR(50) NOT NULL DEFAULT 'unknown' COMMENT '最近一次连接状态' AFTER `rotationInterval`,
ADD COLUMN `proxyCount` INT NOT NULL DEFAULT 0 COMMENT '最近同步的可用代理数量' AFTER `connectionStatus`,
ADD COLUMN `avgResponseTime` INT NULL COMMENT '最近一次连接测试响应时间 (ms)' AFTER `proxyCount`,
ADD COLUMN `successRate` FLOAT NULL COMMENT '连接成功率 (0-1)' AFTER `avgResponseTime`,
ADD COLUMN `lastTestAt` DATETIME NULL COMMENT '最近一次连接测试时间' AFTER `successRate`,
ADD COLUMN `lastTestResult` TEXT NULL COMMENT '最近一次连接测试结果详情(JSON)' AFTER `lastTestAt`;