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,60 @@
module,endpoint,method,status_code,elapsed_time_ms,success,error
基础接口,/,GET,200,20.01,True,
基础接口,/,GET,200,19.18,True,
基础接口,/,GET,200,5.53,True,
基础接口,/health,GET,200,8.24,True,
基础接口,/health,GET,200,43.17,True,
基础接口,/health,GET,200,20.79,True,
基础接口,/nonexistent-test,GET,404,6.33,True,
认证接口,/api/auth/login (用户名),POST,200,295.28,True,
认证接口,/api/auth/login (手机号),POST,200,278.51,True,
认证接口,/api/auth/login (错误密码),POST,401,271.06,True,
认证接口,/api/auth/login (缺少参数),POST,400,6.48,True,
认证接口,/api/auth/employee/login,POST,500,10.39,False,
认证接口,/api/auth/employee/login (错误密码),POST,500,8.28,False,
认证接口,/api/auth/logout (带token),POST,200,27.85,True,
认证接口,/api/auth/logout (不带token),POST,200,9.27,True,
认证接口,/api/auth/login (并发1),POST,200,279.24,True,
认证接口,/api/auth/login (并发2),POST,200,289.70,True,
认证接口,/api/auth/login (并发3),POST,200,292.74,True,
工作台,/api/dashboard/overview (第1次),GET,400,45.20,False,
工作台,/api/dashboard/overview (第2次),GET,400,6.46,False,
工作台,/api/dashboard/overview (第3次),GET,400,49.24,False,
工作台,/api/dashboard/overview (第4次),GET,400,37.51,False,
工作台,/api/dashboard/overview (第5次),GET,400,6.36,False,
工作台,/api/dashboard/recent-publishes (5条记录),GET,400,43.63,False,
工作台,/api/dashboard/recent-publishes (10条记录),GET,400,6.78,False,
工作台,/api/dashboard/recent-publishes (20条记录),GET,400,8.11,False,
工作台,/api/dashboard/hot-products (4个产品),GET,400,25.24,False,
工作台,/api/dashboard/hot-products (8个产品),GET,400,6.64,False,
工作台,/api/dashboard/hot-products (12个产品),GET,400,5.80,False,
企业接口,/api/enterprises/list (基本查询),GET,500,32.33,False,
企业接口,/api/enterprises/list (每页10条),GET,500,78.75,False,
企业接口,/api/enterprises/list (关键词搜索),GET,500,8.79,False,
企业接口,/api/enterprises/list (状态筛选),GET,500,12.95,False,
企业接口,/api/enterprises/list (第2页),GET,500,30.69,False,
企业接口,/api/enterprises/stats (第1次),GET,500,17.18,False,
企业接口,/api/enterprises/stats (第2次),GET,500,21.82,False,
企业接口,/api/enterprises/stats (第3次),GET,500,8.51,False,
企业接口,/api/enterprises/stats (第4次),GET,500,115.64,False,
企业接口,/api/enterprises/stats (第5次),GET,500,69.47,False,
企业接口,/api/enterprises/info (第1次),GET,400,7.13,False,
企业接口,/api/enterprises/info (第2次),GET,400,20.35,False,
企业接口,/api/enterprises/info (第3次),GET,400,20.19,False,
企业接口,/api/enterprises/info (第4次),GET,400,20.79,False,
企业接口,/api/enterprises/info (第5次),GET,400,11.25,False,
企业接口,/api/enterprises/info (PUT),PUT,400,5.76,False,
企业接口,/api/enterprises/change-password,PUT,403,28.74,False,
图片接口,/api/images/list,GET,400,27.04,False,
图片接口,/api/images/list_dashboard,GET,400,29.89,False,
图片接口,/api/images/tags/names/list,GET,400,43.32,False,
日志接口,/api/log/logs,GET,500,19.96,True,
日志接口,/api/log/logs/files,GET,200,27.05,True,
日志接口,/api/log/logs/file,GET,200,75.20,True,
文章接口,/api/articles/list,GET,400,87.42,False,
文章接口,/api/articles/list_dashboard,GET,400,28.77,False,
员工接口,/api/employees/list,GET,400,24.14,False,
员工接口,/api/employees/stats,GET,400,41.62,False,
作者接口,/api/authors,GET,200,9.05,True,
作者接口,/api/authors/departments,GET,200,11.12,True,
作者接口,/api/authors/search,GET,200,28.65,True,
1 module endpoint method status_code elapsed_time_ms success error
2 基础接口 / GET 200 20.01 True
3 基础接口 / GET 200 19.18 True
4 基础接口 / GET 200 5.53 True
5 基础接口 /health GET 200 8.24 True
6 基础接口 /health GET 200 43.17 True
7 基础接口 /health GET 200 20.79 True
8 基础接口 /nonexistent-test GET 404 6.33 True
9 认证接口 /api/auth/login (用户名) POST 200 295.28 True
10 认证接口 /api/auth/login (手机号) POST 200 278.51 True
11 认证接口 /api/auth/login (错误密码) POST 401 271.06 True
12 认证接口 /api/auth/login (缺少参数) POST 400 6.48 True
13 认证接口 /api/auth/employee/login POST 500 10.39 False
14 认证接口 /api/auth/employee/login (错误密码) POST 500 8.28 False
15 认证接口 /api/auth/logout (带token) POST 200 27.85 True
16 认证接口 /api/auth/logout (不带token) POST 200 9.27 True
17 认证接口 /api/auth/login (并发1) POST 200 279.24 True
18 认证接口 /api/auth/login (并发2) POST 200 289.70 True
19 认证接口 /api/auth/login (并发3) POST 200 292.74 True
20 工作台 /api/dashboard/overview (第1次) GET 400 45.20 False
21 工作台 /api/dashboard/overview (第2次) GET 400 6.46 False
22 工作台 /api/dashboard/overview (第3次) GET 400 49.24 False
23 工作台 /api/dashboard/overview (第4次) GET 400 37.51 False
24 工作台 /api/dashboard/overview (第5次) GET 400 6.36 False
25 工作台 /api/dashboard/recent-publishes (5条记录) GET 400 43.63 False
26 工作台 /api/dashboard/recent-publishes (10条记录) GET 400 6.78 False
27 工作台 /api/dashboard/recent-publishes (20条记录) GET 400 8.11 False
28 工作台 /api/dashboard/hot-products (4个产品) GET 400 25.24 False
29 工作台 /api/dashboard/hot-products (8个产品) GET 400 6.64 False
30 工作台 /api/dashboard/hot-products (12个产品) GET 400 5.80 False
31 企业接口 /api/enterprises/list (基本查询) GET 500 32.33 False
32 企业接口 /api/enterprises/list (每页10条) GET 500 78.75 False
33 企业接口 /api/enterprises/list (关键词搜索) GET 500 8.79 False
34 企业接口 /api/enterprises/list (状态筛选) GET 500 12.95 False
35 企业接口 /api/enterprises/list (第2页) GET 500 30.69 False
36 企业接口 /api/enterprises/stats (第1次) GET 500 17.18 False
37 企业接口 /api/enterprises/stats (第2次) GET 500 21.82 False
38 企业接口 /api/enterprises/stats (第3次) GET 500 8.51 False
39 企业接口 /api/enterprises/stats (第4次) GET 500 115.64 False
40 企业接口 /api/enterprises/stats (第5次) GET 500 69.47 False
41 企业接口 /api/enterprises/info (第1次) GET 400 7.13 False
42 企业接口 /api/enterprises/info (第2次) GET 400 20.35 False
43 企业接口 /api/enterprises/info (第3次) GET 400 20.19 False
44 企业接口 /api/enterprises/info (第4次) GET 400 20.79 False
45 企业接口 /api/enterprises/info (第5次) GET 400 11.25 False
46 企业接口 /api/enterprises/info (PUT) PUT 400 5.76 False
47 企业接口 /api/enterprises/change-password PUT 403 28.74 False
48 图片接口 /api/images/list GET 400 27.04 False
49 图片接口 /api/images/list_dashboard GET 400 29.89 False
50 图片接口 /api/images/tags/names/list GET 400 43.32 False
51 日志接口 /api/log/logs GET 500 19.96 True
52 日志接口 /api/log/logs/files GET 200 27.05 True
53 日志接口 /api/log/logs/file GET 200 75.20 True
54 文章接口 /api/articles/list GET 400 87.42 False
55 文章接口 /api/articles/list_dashboard GET 400 28.77 False
56 员工接口 /api/employees/list GET 400 24.14 False
57 员工接口 /api/employees/stats GET 400 41.62 False
58 作者接口 /api/authors GET 200 9.05 True
59 作者接口 /api/authors/departments GET 200 11.12 True
60 作者接口 /api/authors/search GET 200 28.65 True