This commit is contained in:
“shengyudong”
2026-01-06 14:18:39 +08:00
commit 5a384b694e
10345 changed files with 2050918 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
module,endpoint,method,status_code,elapsed_time_ms,success,error
基础接口,/,GET,200,30.94,True,
基础接口,/,GET,200,6.47,True,
基础接口,/,GET,200,56.33,True,
基础接口,/health,GET,200,7.89,True,
基础接口,/health,GET,200,36.34,True,
基础接口,/health,GET,200,6.39,True,
基础接口,/nonexistent-test,GET,404,39.78,True,
认证接口,/api/auth/login,POST,200,265.72,True,
认证接口,/api/auth/employee/login,POST,500,10.62,False,
认证接口,/api/auth/logout,POST,200,34.43,True,
工作台,/api/dashboard/overview,GET,400,6.78,False,
工作台,/api/dashboard/overview,GET,400,69.71,False,
工作台,/api/dashboard/overview,GET,400,6.26,False,
工作台,/api/dashboard/recent-publishes,GET,400,39.34,False,
工作台,/api/dashboard/hot-products,GET,400,29.87,False,
企业接口,/api/enterprises/list,GET,500,8.73,False,
企业接口,/api/enterprises/stats,GET,500,11.66,False,
企业接口,/api/enterprises/info,GET,400,9.30,False,
企业接口,/api/enterprises/change-password,PUT,403,34.08,False,
图片接口,/api/images/list,GET,400,7.22,False,
图片接口,/api/images/list_dashboard,GET,400,7.81,False,
图片接口,/api/images/tags/names/list,GET,400,27.76,False,
日志接口,/api/log/logs,GET,500,8.93,True,
日志接口,/api/log/logs/files,GET,200,21.17,True,
日志接口,/api/log/logs/file,GET,200,45.02,True,
文章接口,/api/articles/list,GET,400,7.33,False,
文章接口,/api/articles/list_dashboard,GET,400,9.40,False,
员工接口,/api/employees/list,GET,400,7.93,False,
员工接口,/api/employees/stats,GET,400,28.30,False,
作者接口,/api/authors,GET,200,8.46,True,
作者接口,/api/authors/departments,GET,200,34.52,True,
作者接口,/api/authors/search,GET,200,37.52,True,
1 module endpoint method status_code elapsed_time_ms success error
2 基础接口 / GET 200 30.94 True
3 基础接口 / GET 200 6.47 True
4 基础接口 / GET 200 56.33 True
5 基础接口 /health GET 200 7.89 True
6 基础接口 /health GET 200 36.34 True
7 基础接口 /health GET 200 6.39 True
8 基础接口 /nonexistent-test GET 404 39.78 True
9 认证接口 /api/auth/login POST 200 265.72 True
10 认证接口 /api/auth/employee/login POST 500 10.62 False
11 认证接口 /api/auth/logout POST 200 34.43 True
12 工作台 /api/dashboard/overview GET 400 6.78 False
13 工作台 /api/dashboard/overview GET 400 69.71 False
14 工作台 /api/dashboard/overview GET 400 6.26 False
15 工作台 /api/dashboard/recent-publishes GET 400 39.34 False
16 工作台 /api/dashboard/hot-products GET 400 29.87 False
17 企业接口 /api/enterprises/list GET 500 8.73 False
18 企业接口 /api/enterprises/stats GET 500 11.66 False
19 企业接口 /api/enterprises/info GET 400 9.30 False
20 企业接口 /api/enterprises/change-password PUT 403 34.08 False
21 图片接口 /api/images/list GET 400 7.22 False
22 图片接口 /api/images/list_dashboard GET 400 7.81 False
23 图片接口 /api/images/tags/names/list GET 400 27.76 False
24 日志接口 /api/log/logs GET 500 8.93 True
25 日志接口 /api/log/logs/files GET 200 21.17 True
26 日志接口 /api/log/logs/file GET 200 45.02 True
27 文章接口 /api/articles/list GET 400 7.33 False
28 文章接口 /api/articles/list_dashboard GET 400 9.40 False
29 员工接口 /api/employees/list GET 400 7.93 False
30 员工接口 /api/employees/stats GET 400 28.30 False
31 作者接口 /api/authors GET 200 8.46 True
32 作者接口 /api/authors/departments GET 200 34.52 True
33 作者接口 /api/authors/search GET 200 37.52 True