peixue-dev/Archive/[一次性]执行创建138测试账号-2026-02-01.bat

28 lines
727 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
echo ========================================
echo 创建138开头的测试账号
echo ========================================
echo.
echo 正在执行SQL脚本...
mysql -h localhost -P 3306 -u root -p123456 peidu < "Archive/[一次性]创建138测试账号-2026-02-01.sql"
if %errorlevel% equ 0 (
echo.
echo ✓ 测试账号创建成功!
echo.
echo 测试账号信息:
echo 1. 家长13800138000 / 123456
echo 2. 陪伴员13800138001 / 123456
echo 3. 管理师13800138002 / 123456
echo 4. 分销员13800138003 / 123456
echo 5. 服务商13800138004 / 123456
) else (
echo.
echo ✗ 执行失败,请检查数据库连接
)
echo.
pause