修改接口文档

This commit is contained in:
2025-10-17 16:21:14 +08:00
parent 311d6dab8f
commit cf2273e6da
17 changed files with 21218 additions and 579 deletions

12
start_project.bat Normal file
View File

@@ -0,0 +1,12 @@
@echo off
echo 正在启动FutureMail API服务器...
cd /d "%~dp0FutureMailAPI"
start "FutureMail API Server" cmd /k "dotnet run"
echo API服务器正在启动请等待几秒钟...
timeout /t 5 /nobreak > nul
echo 正在打开Swagger文档...
start http://localhost:5003/swagger
echo 正在打开API测试页面...
start "%~dp0api_test.html"
echo 完成!
pause