safety-eval-service-frontend/.api/qual-filing-expert-delete-post/spec.json

44 lines
1.0 KiB
JSON
Raw Normal View History

2026-07-02 17:50:43 +08:00
{
"openapi": "3.0.1",
"info": { "title": "删除审核专家", "version": "1.0.0" },
"paths": {
"/qual-filing-expert/delete": {
"post": {
"summary": "删除审核专家",
"tags": ["审核专家管理"],
"parameters": [
{
"name": "id",
"in": "query",
"description": "主键ID",
"required": true,
"schema": { "type": "integer" }
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/SingleResponseVoid" }
}
}
}
}
}
}
},
"components": {
"schemas": {
"SingleResponseVoid": {
"type": "object",
"properties": {
"success": { "type": "boolean" },
"code": { "type": "string" },
"message": { "type": "string" },
"data": { "type": "null" }
}
}
}
}
}