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

46 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2026-07-27 15:41:29 +08:00
{
"openapi": "3.0.1",
"info": { "title": "踏勘监管统计", "version": "1.0.0" },
"paths": {
"/safetyEval/regulator/eval-project-monitor/survey-stat": {
"get": {
"summary": "项目踏勘监管统计",
"tags": ["监管端-安评项目"],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/SingleResponseRegulatorEvalProjectSurveyStatCO" }
}
}
}
}
}
}
},
"components": {
"schemas": {
"SingleResponseRegulatorEvalProjectSurveyStatCO": {
"type": "object",
"properties": {
"success": { "type": "boolean" },
"code": { "type": "string" },
"message": { "type": "string" },
"errMessage": { "type": "string" },
"data": { "$ref": "#/components/schemas/RegulatorEvalProjectSurveyStatCO" }
}
},
"RegulatorEvalProjectSurveyStatCO": {
"type": "object",
"properties": {
"notificationArchivedCount": { "type": "integer", "description": "告知书已归档数" },
"notificationAbnormalCount": { "type": "integer", "description": "告知异常数" },
"clockInNormalCount": { "type": "integer", "description": "人员打卡正常数" },
"clockInAbnormalCount": { "type": "integer", "description": "打卡异常数" }
}
}
}
}
}