|
|
|
|
@ -286,7 +286,7 @@ const docTemplate = `{
|
|
|
|
|
"application/x-www-form-urlencoded"
|
|
|
|
|
],
|
|
|
|
|
"tags": [
|
|
|
|
|
"设备管理 /api/device/v1/"
|
|
|
|
|
"设备相关 /api/device/v1/"
|
|
|
|
|
],
|
|
|
|
|
"summary": "更新设备状态",
|
|
|
|
|
"parameters": [
|
|
|
|
|
@ -918,6 +918,42 @@ const docTemplate = `{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"/api/monkey/v2/task/handle/set": {
|
|
|
|
|
"post": {
|
|
|
|
|
"description": "更新Monkey任务跟进状态",
|
|
|
|
|
"consumes": [
|
|
|
|
|
"application/x-www-form-urlencoded"
|
|
|
|
|
],
|
|
|
|
|
"tags": [
|
|
|
|
|
"Monkey相关 /api/monkey/v2/"
|
|
|
|
|
],
|
|
|
|
|
"summary": "更新任务跟进状态",
|
|
|
|
|
"parameters": [
|
|
|
|
|
{
|
|
|
|
|
"type": "string",
|
|
|
|
|
"description": "Monkey任务id",
|
|
|
|
|
"name": "task_id",
|
|
|
|
|
"in": "formData",
|
|
|
|
|
"required": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "string",
|
|
|
|
|
"description": "跟进情况:IN_PROGRESS-跟进中/DONE-已跟进",
|
|
|
|
|
"name": "handle_status",
|
|
|
|
|
"in": "formData",
|
|
|
|
|
"required": true
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"responses": {
|
|
|
|
|
"200": {
|
|
|
|
|
"description": "返回创建后的设备信息",
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/definitions/models.Response"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"/api/project/v1/app": {
|
|
|
|
|
"get": {
|
|
|
|
|
"description": "根据应用名称app_name获取应用信息",
|
|
|
|
|
|