Files
AIclinicalresearch/backend/初始化测试用户.bat
HaHafeng 88cc049fb3 feat(asl): Complete Day 5 - Fulltext Screening Backend API Development
- Implement 5 core API endpoints (create task, get progress, get results, update decision, export Excel)
- Add FulltextScreeningController with Zod validation (652 lines)
- Implement ExcelExporter service with 4-sheet report generation (352 lines)
- Register routes under /api/v1/asl/fulltext-screening
- Create 31 REST Client test cases
- Add automated integration test script
- Fix PDF extraction fallback mechanism in LLM12FieldsService
- Update API design documentation to v3.0
- Update development plan to v1.2
- Create Day 5 development record
- Clean up temporary test files
2025-11-23 10:52:07 +08:00

76 lines
726 B
Batchfile

@echo off
chcp 65001 > nul
echo.
echo ========================================
echo 初始化测试用户
echo ========================================
echo.
cd /d "%~dp0"
echo [1/1] 正在初始化测试用户数据...
call npm run prisma:seed
echo.
echo ========================================
echo 初始化完成!
echo ========================================
echo.
echo 测试账号信息:
echo 邮箱: test@example.com
echo 密码: password123
echo 用户ID: user-mock-001
echo.
echo 管理员账号信息:
echo 邮箱: admin@example.com
echo 密码: password123
echo 用户ID: user-admin-001
echo.
echo 现在可以创建知识库了!
echo.
pause