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

57 lines
1.8 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/get": {
"get": {
"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/SingleResponseQualFilingExpertCO" }
}
}
}
}
}
}
},
"components": {
"schemas": {
"QualFilingExpertCO": {
"type": "object",
"properties": {
"id": { "type": "integer", "format": "int64", "description": "主键ID(后端Long)" },
"userName": { "type": "string", "description": "用户名称/姓名" },
"account": { "type": "string", "description": "账号" },
"genderCode": { "type": "integer", "description": "性别编码(1男2女)" },
"genderName": { "type": "string", "description": "性别名称" },
"idCardNo": { "type": "string", "description": "身份证号" },
"certificate": { "type": "string", "description": "证书" },
"tenantId": { "type": "integer", "format": "int64", "description": "租户ID" }
}
},
"SingleResponseQualFilingExpertCO": {
"type": "object",
"properties": {
"success": { "type": "boolean" },
"code": { "type": "string" },
"message": { "type": "string" },
"data": { "$ref": "#/components/schemas/QualFilingExpertCO" }
}
}
}
}
}