safety-eval-service-frontend/.api/safetyEval-regulator-eval-p.../spec.json

46 lines
1.5 KiB
JSON
Raw Normal View History

2026-07-27 11:54:30 +08:00
{
"openapi": "3.0.1",
"info": { "title": "实时监控统计", "version": "1.0.0" },
"paths": {
"/safetyEval/regulator/eval-project-monitor/monitor-realtime-stat": {
"get": {
"summary": "实时监控统计",
"tags": ["监管端-安评项目"],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/SingleResponseRegulatorEvalProjectMonitorStatCO" }
}
}
}
}
}
}
},
"components": {
"schemas": {
"SingleResponseRegulatorEvalProjectMonitorStatCO": {
"type": "object",
"properties": {
"success": { "type": "boolean" },
"code": { "type": "string" },
"message": { "type": "string" },
"errMessage": { "type": "string" },
"data": { "$ref": "#/components/schemas/RegulatorEvalProjectMonitorStatCO" }
}
},
"RegulatorEvalProjectMonitorStatCO": {
"type": "object",
"properties": {
"monitoringCount": { "type": "integer", "description": "在监项目数" },
"normalCount": { "type": "integer", "description": "正常执行数(未归档)" },
"warningCount": { "type": "integer", "description": "进度/人员预警数" },
"monthPlanCompleteCount": { "type": "integer", "description": "本月计划完成数" }
}
}
}
}
}