Initial commit: AIGC项目完整代码

This commit is contained in:
AIGC Developer
2025-10-21 16:50:33 +08:00
commit 47c8e02ab0
137 changed files with 30676 additions and 0 deletions

19
demo/insert_test_data.sql Normal file
View File

@@ -0,0 +1,19 @@
-- MySQL测试数据插入脚本
-- 连接到MySQL数据库: aigc
-- 用户名: root, 密码: 177615
USE aigc;
-- 删除现有测试数据(如果存在)
DELETE FROM users WHERE username IN ('demo', 'admin', 'testuser', 'mingzi_FBx7foZYDS7inLQb', '15538239326');
-- 插入测试用户数据
INSERT INTO users (username, email, password_hash, role, points) VALUES
('demo', 'demo@example.com', 'demo', 'ROLE_USER', 100),
('admin', 'admin@example.com', 'admin123', 'ROLE_ADMIN', 200),
('testuser', 'testuser@example.com', 'test123', 'ROLE_USER', 75),
('mingzi_FBx7foZYDS7inLQb', 'mingzi@example.com', '123456', 'ROLE_USER', 25),
('15538239326', '15538239326@example.com', '0627', 'ROLE_USER', 50);
-- 验证插入结果
SELECT username, email, role, points FROM users WHERE username IN ('demo', 'admin', 'testuser', 'mingzi_FBx7foZYDS7inLQb', '15538239326');