53 lines
1.8 KiB
JSON
53 lines
1.8 KiB
JSON
|
|
{
|
||
|
|
"openapi": "3.0.1",
|
||
|
|
"info": { "title": "审核", "version": "1.0.0" },
|
||
|
|
"paths": {
|
||
|
|
"/qual-filing/review": {
|
||
|
|
"post": {
|
||
|
|
"summary": "审核",
|
||
|
|
"tags": ["资质备案申请管理"],
|
||
|
|
"requestBody": {
|
||
|
|
"content": {
|
||
|
|
"application/json": {
|
||
|
|
"schema": { "$ref": "#/components/schemas/QualFilingReviewAddCmd" }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"responses": {
|
||
|
|
"200": {
|
||
|
|
"description": "OK",
|
||
|
|
"content": {
|
||
|
|
"application/json": {
|
||
|
|
"schema": { "$ref": "#/components/schemas/SingleResponseVoid" }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"components": {
|
||
|
|
"schemas": {
|
||
|
|
"QualFilingReviewAddCmd": {
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"filingId": { "type": "integer", "format": "int64", "description": "备案申请id(后端Long)" },
|
||
|
|
"reviewResult": { "type": "string", "description": "审核结果(1通过2待定3不通过)" },
|
||
|
|
"reviewResultRemark": { "type": "string", "description": "审核结果文字描述" },
|
||
|
|
"filingExpertId": { "type": "integer", "format": "int64", "description": "专家id(后端Long)" },
|
||
|
|
"filingExpertName": { "type": "string", "description": "专家名称" },
|
||
|
|
"reviewOpinion": { "type": "string", "description": "综合审核意见" }
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"SingleResponseVoid": {
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"success": { "type": "boolean", "description": "是否成功" },
|
||
|
|
"code": { "type": "string", "description": "响应码" },
|
||
|
|
"message": { "type": "string", "description": "响应消息" },
|
||
|
|
"data": { "type": "null", "description": "响应数据" }
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|