44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
|
|
{
|
||
|
|
"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" }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|