Inspection System Interface
Step 1: Get CAPTCHA Image
Interface Address:/platform/api/v1/user/captcha/code
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
None
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | Returns binary image content |
Response Status Code-200:
Returns the binary content of the CAPTCHA image directly, not a CommonResult JSON structure.
Step 2: Login, Get AccessToken
Use the username, password, and the captcha obtained in the previous step to log in. After obtaining the AccessToken, include this AccessToken in the header of all subsequent calls.
Interface Address:/auth/api/v1/login
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
Request Example:
{
"username": "",
"password": "",
"captchaCode": "",
"otpCode": "",
"facePath": "",
"flag": 0
}Request Parameters:
Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| login | Login | body | true | Login | Login |
| username | Username | false | string | ||
| password | Password | false | string | ||
| captchaCode | CAPTCHA | false | string | ||
| otpCode | Two-factor authentication code | false | string | ||
| facePath | Face image file path | false | string | ||
| flag | Front-end login flag: 1-Web, 2-Pilot | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultTokenResponse |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | TokenResponse | TokenResponse | |
| accessToken | access_token | string | |
| tokenType | Token type | string | |
| refreshToken | refresh_token | string | |
| expiresIn | Token expiration time - seconds | integer(int32) | |
| scope | Scope | array | string |
| iat | Issue time - milliseconds | number(double) | |
| license | string | ||
| userId | User ID | integer(int64) | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"accessToken": "",
"tokenType": "",
"refreshToken": "",
"expiresIn": 0,
"scope": [],
"iat": 0,
"license": "",
"userId": 0
},
"timestamp": ""
}Inspection Tasks
Add Task
Interface Address:/task/api/v1/tasks/add
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
Request Example:
{
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
}Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| taskDto | Task template | body | true | TaskDto | TaskDto |
| id | Primary key | true | integer(int64) | ||
| taskCode | Task code | false | string | ||
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitor Task | true | integer(int32) | ||
| types | Task Multiple Type Query | false | array | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | false | integer(int32) | ||
| name | Task name | true | string | ||
| priority | Priority 1, 2, 3, 4, the higher the number, the higher the priority | false | integer(int32) | ||
| singleton | 0 Single instance 1 Multiple instances | false | integer(int32) | ||
| releaseStatus | 0 Published, 1 Unpublished | false | integer(int32) | ||
| firstPlanTime | First plan time | false | string(date-time) | ||
| linkageType | Linkage Type: 1 Linkage / 2 Sequential Control | false | integer(int32) | ||
| pointNum | Number of points | false | integer(int32) | ||
| verifiedType | Verification type: 0 Manual verification, 1 Automatic verification | false | integer(int32) | ||
| executors | Executors | false | array | string | |
| schedules | Task schedules | false | array | TaskScheduleDto | |
| id | Primary key ID' | true | integer | ||
| taskId | task_id | false | integer | ||
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate, 5 (Silent use) One-time | false | integer | ||
| invalidStart | Invalid start time. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| invalidDue | Unavailable end time. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| fixedStartTime | Fixed start time set. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| startTime | Start time, inclusive. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| endTime | Format yyyy-MM-dd HH:mm:ss | false | string | ||
| cycleMonth | Cycle month set | false | array | integer | |
| cycleWeek | Cycle week set | false | array | integer | |
| cycleDay | Cycle day set | false | array | integer | |
| intervalType | Interval Type: 0 for Minutes, 1 for Hours, 2 for Days, 3 for Weeks, 4 for Months | false | integer | ||
| intervalNumber | Interval number | false | integer | ||
| executeTime | Execute time, unit: seconds, HH:mm:ss | false | string | ||
| cron | cron expression | false | string | ||
| jobId | xxl-job task id | false | string | ||
| isDeleted | Logically deleted | false | integer | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string | ||
| recurrentExecution | Recurrent execution 1: Yes 0: No | false | integer | ||
| version | Optimistic lock | false | integer(int32) | ||
| isDeleted | Logically deleted | false | integer(int32) | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string(date-time) | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string(date-time) | ||
| testRun | 0 Test run, 1 Run | false | integer(int32) | ||
| deviceId | deviceId | false | integer(int64) | ||
| mspId | Scene id | false | integer(int64) | ||
| workCardId | Work card id | false | integer(int64) | ||
| workCardName | Work card name | false | string | ||
| ids | Task id set | false | array | integer(int64) | |
| filter | Filter whether it is an AR task | false | string | ||
| extraInfo | Extra info | false | string | ||
| executedCount | Executed count | false | integer(int64) | ||
| treeIds | Tree ids stored in the frontend | false | array | integer(int64) | |
| beuTypes | All Task Point Types in Task | false | array | integer(int32) | |
| taskDevs | Business devices | false | array | BisDevDto | |
| id | Primary key | false | integer | ||
| type | type 1 Task point 2 Maintenance area point | false | integer | ||
| areaName | Area name | false | string | ||
| bayName | Bay name | false | string | ||
| mainDeviceName | Device Name | false | string | ||
| partName | Part name | false | string | ||
| pointAndPhaseName | Point and phase name | false | string | ||
| devTypes | Collection devices | false | array | integer | |
| step | Execution step | false | integer | ||
| bisId | bis_id | false | integer | ||
| devLevel | Dev level, supports associating inspection points of different levels, 1 Site, 2 Bay, 3 Device, 4 Component, 5 Point | true | integer | ||
| devId | Dev id, the corresponding level of power device or power point ID | true | integer | ||
| devPointId | Robot or drone point | false | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultTaskDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | TaskDto | TaskDto | |
| id | Primary key | integer(int64) | |
| taskCode | Task code | string | |
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitor Task | integer(int32) | |
| types | Task Multiple Type Query | array | integer(int32) |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | integer(int32) | |
| name | Task name | string | |
| priority | Priority 1, 2, 3, 4, the higher the number, the higher the priority | integer(int32) | |
| singleton | 0 Single instance 1 Multiple instances | integer(int32) | |
| releaseStatus | 0 Published, 1 Unpublished | integer(int32) | |
| firstPlanTime | First plan time | string(date-time) | |
| linkageType | Linkage Type: 1 Linkage / 2 Sequential Control | integer(int32) | |
| pointNum | Number of points | integer(int32) | |
| verifiedType | Verification type: 0 Manual verification, 1 Automatic verification | integer(int32) | |
| executors | Executors | array | string |
| schedules | Task schedules | array | TaskScheduleDto |
| id | Primary key ID' | integer | |
| taskId | task_id | integer | |
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate, 5 (Silent use) One-time | integer | |
| invalidStart | Invalid start time. Format yyyy-MM-dd HH:mm:ss | string | |
| invalidDue | Unavailable end time. Format yyyy-MM-dd HH:mm:ss | string | |
| fixedStartTime | Fixed start time set. Format yyyy-MM-dd HH:mm:ss | string | |
| startTime | Start time, inclusive. Format yyyy-MM-dd HH:mm:ss | string | |
| endTime | Format yyyy-MM-dd HH:mm:ss | string | |
| cycleMonth | Cycle month set | array | integer |
| cycleWeek | Cycle week set | array | integer |
| cycleDay | Cycle day set | array | integer |
| intervalType | Interval Type: 0 for Minutes, 1 for Hours, 2 for Days, 3 for Weeks, 4 for Months | integer | |
| intervalNumber | Interval number | integer | |
| executeTime | Execute time, unit: seconds, HH:mm:ss | string | |
| cron | cron expression | string | |
| jobId | xxl-job task id | string | |
| isDeleted | Logically deleted | integer | |
| createdBy | Created by | string | |
| createdTime | Created time | string | |
| updatedBy | Updated by | string | |
| updatedTime | Updated time | string | |
| recurrentExecution | Recurrent execution 1: Yes 0: No | integer | |
| version | Optimistic lock | integer(int32) | |
| isDeleted | Logically deleted | integer(int32) | |
| createdBy | Created by | string | |
| createdTime | Created time | string(date-time) | |
| updatedBy | Updated by | string | |
| updatedTime | Updated time | string(date-time) | |
| testRun | 0 Test run, 1 Run | integer(int32) | |
| deviceId | deviceId | integer(int64) | |
| mspId | Scene id | integer(int64) | |
| workCardId | Work card id | integer(int64) | |
| workCardName | Work card name | string | |
| ids | Task id set | array | integer(int64) |
| filter | Filter whether it is an AR task | string | |
| extraInfo | Extra info | string | |
| executedCount | Executed count | integer(int64) | |
| treeIds | Tree ids stored in the frontend | array | integer(int64) |
| beuTypes | All Task Point Types in Task | array | integer(int32) |
| taskDevs | Business devices | array | BisDevDto |
| id | Primary key | integer | |
| type | type 1 Task point 2 Maintenance area point | integer | |
| areaName | Area name | string | |
| bayName | Bay name | string | |
| mainDeviceName | Device Name | string | |
| partName | Part name | string | |
| pointAndPhaseName | Point and phase name | string | |
| devTypes | Collection devices | array | integer |
| step | Execution step | integer | |
| bisId | bis_id | integer | |
| devLevel | Dev level, supports associating inspection points of different levels, 1 Site, 2 Bay, 3 Device, 4 Component, 5 Point | integer | |
| devId | Dev id, the corresponding level of power device or power point ID | integer | |
| devPointId | Robot or drone point | string | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
},
"timestamp": ""
}Update Task Status
Mainly enable the task through the following parameter combination
Interface Address:/platform/api/v1/task/tasks/update-status
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
Request Example:
{
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
}Request Parameters:
Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| taskDto | Task template | body | true | TaskDto | TaskDto |
| id | Primary key | true | integer(int64) | ||
| taskCode | Task code | false | string | ||
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitor Task | true | integer(int32) | ||
| types | Task Multiple Type Query | false | array | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | false | integer(int32) | ||
| name | Task name | true | string | ||
| priority | Priority 1, 2, 3, 4, the higher the number, the higher the priority | false | integer(int32) | ||
| singleton | 0 Single instance 1 Multiple instances | false | integer(int32) | ||
| releaseStatus | 0 Published, 1 Unpublished | false | integer(int32) | ||
| firstPlanTime | First plan time | false | string(date-time) | ||
| linkageType | Linkage Type: 1 Linkage / 2 Sequential Control | false | integer(int32) | ||
| pointNum | Number of points | false | integer(int32) | ||
| verifiedType | Verification type: 0 Manual verification, 1 Automatic verification | false | integer(int32) | ||
| executors | Executors | false | array | string | |
| schedules | Task schedules | false | array | TaskScheduleDto | |
| id | Primary key ID' | true | integer | ||
| taskId | task_id | false | integer | ||
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate, 5 (Silent use) One-time | false | integer | ||
| invalidStart | Invalid start time. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| invalidDue | Unavailable end time. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| fixedStartTime | Fixed start time set. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| startTime | Start time, inclusive. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| endTime | Format yyyy-MM-dd HH:mm:ss | false | string | ||
| cycleMonth | Cycle month set | false | array | integer | |
| cycleWeek | Cycle week set | false | array | integer | |
| cycleDay | Cycle day set | false | array | integer | |
| intervalType | Interval Type: 0 for Minutes, 1 for Hours, 2 for Days, 3 for Weeks, 4 for Months | false | integer | ||
| intervalNumber | Interval number | false | integer | ||
| executeTime | Execute time, unit: seconds, HH:mm:ss | false | string | ||
| cron | cron expression | false | string | ||
| jobId | xxl-job task id | false | string | ||
| isDeleted | Logically deleted | false | integer | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string | ||
| recurrentExecution | Recurrent execution 1: Yes 0: No | false | integer | ||
| version | Optimistic lock | false | integer(int32) | ||
| isDeleted | Logically deleted | false | integer(int32) | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string(date-time) | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string(date-time) | ||
| testRun | 0 Test run, 1 Run | false | integer(int32) | ||
| deviceId | deviceId | false | integer(int64) | ||
| mspId | Scene id | false | integer(int64) | ||
| workCardId | Work card id | false | integer(int64) | ||
| workCardName | Work card name | false | string | ||
| ids | Task id set | false | array | integer(int64) | |
| filter | Filter whether it is an AR task | false | string | ||
| extraInfo | Extra info | false | string | ||
| executedCount | Executed count | false | integer(int64) | ||
| treeIds | Tree ids stored in the frontend | false | array | integer(int64) | |
| beuTypes | All Task Point Types in Task | false | array | integer(int32) | |
| taskDevs | Business devices | false | array | BisDevDto | |
| id | Primary key | false | integer | ||
| type | type 1 Task point 2 Maintenance area point | false | integer | ||
| areaName | Area name | false | string | ||
| bayName | Bay name | false | string | ||
| mainDeviceName | Device Name | false | string | ||
| partName | Part name | false | string | ||
| pointAndPhaseName | Point and phase name | false | string | ||
| devTypes | Collection devices | false | array | integer | |
| step | Execution step | false | integer | ||
| bisId | bis_id | false | integer | ||
| devLevel | Dev level, supports associating inspection points of different levels, 1 Site, 2 Bay, 3 Device, 4 Component, 5 Point | true | integer | ||
| devId | Dev id, the corresponding level of power device or power point ID | true | integer | ||
| devPointId | Robot or drone point | false | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultTaskDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | TaskDto | TaskDto | |
| id | Primary key | integer(int64) | |
| taskCode | Task code | string | |
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitor Task | integer(int32) | |
| types | Task Multiple Type Query | array | integer(int32) |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | integer(int32) | |
| name | Task name | string | |
| priority | Priority 1, 2, 3, 4, the higher the number, the higher the priority | integer(int32) | |
| singleton | 0 Single instance 1 Multiple instances | integer(int32) | |
| releaseStatus | 0 Published, 1 Unpublished | integer(int32) | |
| firstPlanTime | First plan time | string(date-time) | |
| linkageType | Linkage Type: 1 Linkage / 2 Sequential Control | integer(int32) | |
| pointNum | Number of points | integer(int32) | |
| verifiedType | Verification type: 0 Manual verification, 1 Automatic verification | integer(int32) | |
| executors | Executors | array | string |
| schedules | Task schedules | array | TaskScheduleDto |
| id | Primary key ID' | integer | |
| taskId | task_id | integer | |
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate, 5 (Silent use) One-time | integer | |
| invalidStart | Invalid start time. Format yyyy-MM-dd HH:mm:ss | string | |
| invalidDue | Unavailable end time. Format yyyy-MM-dd HH:mm:ss | string | |
| fixedStartTime | Fixed start time set. Format yyyy-MM-dd HH:mm:ss | string | |
| startTime | Start time, inclusive. Format yyyy-MM-dd HH:mm:ss | string | |
| endTime | Format yyyy-MM-dd HH:mm:ss | string | |
| cycleMonth | Cycle month set | array | integer |
| cycleWeek | Cycle week set | array | integer |
| cycleDay | Cycle day set | array | integer |
| intervalType | Interval Type: 0 for Minutes, 1 for Hours, 2 for Days, 3 for Weeks, 4 for Months | integer | |
| intervalNumber | Interval number | integer | |
| executeTime | Execute time, unit: seconds, HH:mm:ss | string | |
| cron | cron expression | string | |
| jobId | xxl-job task id | string | |
| isDeleted | Logically deleted | integer | |
| createdBy | Created by | string | |
| createdTime | Created time | string | |
| updatedBy | Updated by | string | |
| updatedTime | Updated time | string | |
| recurrentExecution | Recurrent execution 1: Yes 0: No | integer | |
| version | Optimistic lock | integer(int32) | |
| isDeleted | Logically deleted | integer(int32) | |
| createdBy | Created by | string | |
| createdTime | Created time | string(date-time) | |
| updatedBy | Updated by | string | |
| updatedTime | Updated time | string(date-time) | |
| testRun | 0 Test run, 1 Run | integer(int32) | |
| deviceId | deviceId | integer(int64) | |
| mspId | Scene id | integer(int64) | |
| workCardId | Work card id | integer(int64) | |
| workCardName | Work card name | string | |
| ids | Task id set | array | integer(int64) |
| filter | Filter whether it is an AR task | string | |
| extraInfo | Extra info | string | |
| executedCount | Executed count | integer(int64) | |
| treeIds | Tree ids stored in the frontend | array | integer(int64) |
| beuTypes | All Task Point Types in Task | array | integer(int32) |
| taskDevs | Business devices | array | BisDevDto |
| id | Primary key | integer | |
| type | type 1 Task point 2 Maintenance area point | integer | |
| areaName | Area name | string | |
| bayName | Bay name | string | |
| mainDeviceName | Device Name | string | |
| partName | Part name | string | |
| pointAndPhaseName | Point and phase name | string | |
| devTypes | Collection devices | array | integer |
| step | Execution step | integer | |
| bisId | bis_id | integer | |
| devLevel | Dev level, supports associating inspection points of different levels, 1 Site, 2 Bay, 3 Device, 4 Component, 5 Point | integer | |
| devId | Dev id, the corresponding level of power device or power point ID | integer | |
| devPointId | Robot or drone point | string | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
},
"timestamp": ""
}Task Control
Interface Address:/platform/api/v1/task/ctls
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
Request Example:
{
"taskId": 0,
"taskCode": "",
"execId": "",
"operate": 0,
"planStartTime": "",
"executeType": 0,
"taskDto": {
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
},
"instanceDto": {
"id": 0,
"taskId": 0,
"taskCode": "",
"taskName": "",
"taskType": 0,
"pointNum": 0,
"singleton": 0,
"inspectionType": 0,
"executeType": 0,
"taskPatrolledId": "",
"execId": "",
"priority": 0,
"runtimeStatus": 0,
"planStartTime": "",
"startTime": "",
"endTime": "",
"verified": 0,
"verifiedPerson": "",
"verifiedTime": "",
"progress": "",
"abnormalPtCnt": 0,
"normalPtCnt": 0,
"linkageType": 0,
"taskBeuStatus": 0,
"video": "",
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"patrolConclusion": "",
"reportUrl": "",
"testRun": 0,
"mspId": 0,
"patrolPersonIds": "",
"patrolPersonNames": "",
"workCardId": 0,
"workCardName": "",
"executors": [],
"conclusion": 0,
"extraInfo": ""
},
"testRun": 0,
"singleton": 0,
"extraInfo": "",
"video": "",
"highest": true,
"basicExecuteUnitEnumList": []
}Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| taskCtlRequestDto | Task ConControl Request | body | true | TaskCtlRequestDto | TaskCtlRequestDto |
| taskId | Task id | false | integer(int64) | ||
| taskCode | Task code | false | string | ||
| execId | Execution id | false | string | ||
| operate | 1 Start execution, 2 Pause, 3 Resume execution, 4 Stop | false | integer(int32) | ||
| planStartTime | Plan start time | false | string(date-time) | ||
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate | false | integer(int32) | ||
| taskDto | Task template | false | TaskDto | TaskDto | |
| id | Primary key | true | integer | ||
| taskCode | Task code | false | string | ||
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitor Task | true | integer | ||
| types | Task Multiple Type Query | false | array | integer | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | false | integer | ||
| name | Task name | true | string | ||
| priority | Priority 1, 2, 3, 4, the higher the number, the higher the priority | false | integer | ||
| singleton | 0 Single instance 1 Multiple instances | false | integer | ||
| releaseStatus | 0 Published, 1 Unpublished | false | integer | ||
| firstPlanTime | First plan time | false | string | ||
| linkageType | Linkage Type: 1 Linkage / 2 Sequential Control | false | integer | ||
| pointNum | Number of points | false | integer | ||
| verifiedType | Verification type: 0 Manual verification, 1 Automatic verification | false | integer | ||
| executors | Executors | false | array | string | |
| schedules | Task schedules | false | array | TaskScheduleDto | |
| id | Primary key ID' | true | integer | ||
| taskId | task_id | false | integer | ||
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate, 5 (Silent use) One-time | false | integer | ||
| invalidStart | Invalid start time. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| invalidDue | Unavailable end time. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| fixedStartTime | Fixed start time set. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| startTime | Start time, inclusive. Format yyyy-MM-dd HH:mm:ss | false | string | ||
| endTime | Format yyyy-MM-dd HH:mm:ss | false | string | ||
| cycleMonth | Cycle month set | false | array | integer | |
| cycleWeek | Cycle week set | false | array | integer | |
| cycleDay | Cycle day set | false | array | integer | |
| intervalType | Interval Type: 0 for Minutes, 1 for Hours, 2 for Days, 3 for Weeks, 4 for Months | false | integer | ||
| intervalNumber | Interval number | false | integer | ||
| executeTime | Execute time, unit: seconds, HH:mm:ss | false | string | ||
| cron | cron expression | false | string | ||
| jobId | xxl-job task id | false | string | ||
| isDeleted | Logically deleted | false | integer | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string | ||
| recurrentExecution | Recurrent execution 1: Yes 0: No | false | integer | ||
| version | Optimistic lock | false | integer | ||
| isDeleted | Logically deleted | false | integer | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string | ||
| testRun | 0 Test run, 1 Run | false | integer | ||
| deviceId | deviceId | false | integer | ||
| mspId | Scene id | false | integer | ||
| workCardId | Work card id | false | integer | ||
| workCardName | Work card name | false | string | ||
| ids | Task id set | false | array | integer | |
| filter | Filter whether it is an AR task | false | string | ||
| extraInfo | Extra info | false | string | ||
| executedCount | Executed count | false | integer | ||
| treeIds | Tree ids stored in the frontend | false | array | integer | |
| beuTypes | All Task Point Types in Task | false | array | integer | |
| taskDevs | Business devices | false | array | BisDevDto | |
| id | Primary key | false | integer | ||
| type | type 1 Task point 2 Maintenance area point | false | integer | ||
| areaName | Area name | false | string | ||
| bayName | Bay name | false | string | ||
| mainDeviceName | Device Name | false | string | ||
| partName | Part name | false | string | ||
| pointAndPhaseName | Point and phase name | false | string | ||
| devTypes | Collection devices | false | array | integer | |
| step | Execution step | false | integer | ||
| bisId | bis_id | false | integer | ||
| devLevel | Dev level, supports associating inspection points of different levels, 1 Site, 2 Bay, 3 Device, 4 Component, 5 Point | true | integer | ||
| devId | Dev id, the corresponding level of power device or power point ID | true | integer | ||
| devPointId | Robot or drone point | false | string | ||
| instanceDto | Instance | false | InstanceDto | InstanceDto | |
| id | Primary key | false | integer | ||
| taskId | task_id | false | integer | ||
| taskCode | task_code | false | string | ||
| taskName | Task name | false | string | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitor Task | false | integer | ||
| pointNum | Number of points | false | integer | ||
| singleton | 0 Single instance 1 Multiple instances | false | integer | ||
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | false | integer | ||
| executeType | Execution Type: 1 Regular, 2 Periodic (Month/Week/Day), 3 Interval, 4 Immediate | false | integer | ||
| taskPatrolledId | task_patrolled_id | false | string | ||
| execId | Execution id | false | string | ||
| priority | Inspection Priority | false | integer | ||
| runtimeStatus | Runtime Status: 1 Finished, 2 Executing, 3 Waiting, 4 Stopped, 5 Executing/Paused, 6 Paused, 7 Processing, 8 Higher Priority Task Exists, 9 Exception | false | integer | ||
| planStartTime | Plan start time | false | string | ||
| startTime | Task execution start time | false | string | ||
| endTime | Task execution end time | false | string | ||
| verified | Verified status | false | integer | ||
| verifiedPerson | Verified person | false | string | ||
| verifiedTime | Verified time | false | string | ||
| progress | Task execution progress | false | string | ||
| abnormalPtCnt | Number of results failing AI verification | false | integer | ||
| normalPtCnt | Number of results passing AI verification | false | integer | ||
| linkageType | Linkage Type: 1 Smart Linkage / 2 Reverse Linkage | false | integer | ||
| taskBeuStatus | 0 Normal 1 Abnormal | false | integer | ||
| video | Video URL | false | string | ||
| version | Version number | false | integer | ||
| isDeleted | Logically deleted value (default 1), not deleted value (default 0) | false | integer | ||
| createdBy | Created by | false | string | ||
| createdTime | Created time | false | string | ||
| updatedBy | Updated by | false | string | ||
| updatedTime | Updated time | false | string | ||
| patrolConclusion | Patrol conclusion | false | string | ||
| reportUrl | Report download URL | false | string | ||
| testRun | 0 Test run, 1 Run | false | integer | ||
| mspId | Scene id | false | integer | ||
| patrolPersonIds | Patrol person ids | false | string | ||
| patrolPersonNames | Patrol persons | false | string | ||
| workCardId | Work card id | false | integer | ||
| workCardName | Work card name | false | string | ||
| executors | Executors | false | array | string | |
| conclusion | 0 Pending, 1 Normal, 2 Abnormal, 3 Execution failure, 5 Unknown | false | integer | ||
| extraInfo | Extra info | false | string | ||
| testRun | 0 Test run, 1 Run | false | integer(int32) | ||
| singleton | 0 Single instance 1 Multiple instances | false | integer(int32) | ||
| extraInfo | Extra info | false | string | ||
| video | Video URL | false | string | ||
| highest | Whether it is the highest priority control | false | boolean | ||
| basicExecuteUnitEnumList | Hardware to be executed | false | array | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultTaskCtlResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | TaskCtlResultDto | TaskCtlResultDto | |
| taskId | Task id | integer(int64) | |
| taskName | Task name | string | |
| taskCode | Task code | string | |
| status | Control result status, 1 Success; 2 Failure | integer(int32) | |
| taskInsId | Task Ins IDnstanceid | integer(int64) | |
| execId | Execution ID | string | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"taskId": 0,
"taskName": "",
"taskCode": "",
"status": 0,
"taskInsId": 0,
"execId": ""
},
"timestamp": ""
}Update Task
Interface Address: /platform/api/v1/task/tasks/update
Request Method: POST
Request Data Type: application/x-www-form-urlencoded, application/json
Response Data Type: */*
Interface Description:
Request Example:
{
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
}Delete Task
Interface Address:/platform/api/v1/task/tasks/delete
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
Request Example:
{
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
}Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| taskDto | Task Template | body | true | TaskDto | TaskDto |
| id | Primary Key | true | integer(int64) | ||
| taskCode | Task Code | false | string | ||
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | true | integer(int32) | ||
| types | Query by Multiple Task Types | false | array | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | false | integer(int32) | ||
| name | Task Name | true | string | ||
| priority | Priority 1, 2, 3, 4 (higher number = higher priority) | false | integer(int32) | ||
| singleton | 0 Single, 1 Multiple | false | integer(int32) | ||
| releaseStatus | 0 Published, 1 Unpublished | false | integer(int32) | ||
| firstPlanTime | First Execution Time | false | string(date-time) | ||
| linkageType | Linkage Type 1: Linkage / 2: Sequential Control | false | integer(int32) | ||
| pointNum | Number of Points | false | integer(int32) | ||
| verifiedType | Verification Method: 0 Manual Review, 1 Automatic Review | false | integer(int32) | ||
| executors | Executors | false | array | string | |
| schedules | Task schedules | false | array | TaskScheduleDto | |
| id | Primary Key ID | true | integer | ||
| taskId | task_id | false | integer | ||
| executeType | Execution Type: 1 Regular, 2 Cyclic (Month/Week/Day), 3 Interval, 4 Immediate, 5 Silent One-time | false | integer | ||
| invalidStart | Unavailable Start Time (yyyy-MM-dd HH:mm:ss) | false | string | ||
| invalidDue | Unavailable End Time (yyyy-MM-dd HH:mm:ss) | false | string | ||
| fixedStartTime | Fixed execution time list (yyyy-MM-dd HH:mm:ss) | false | string | ||
| startTime | Start Time (yyyy-MM-dd HH:mm:ss) | false | string | ||
| endTime | Format yyyy-MM-dd HH:mm:ss | false | string | ||
| cycleMonth | Cycle Months | false | array | integer | |
| cycleWeek | Cycle Weeks | false | array | integer | |
| cycleDay | Cycle Days | false | array | integer | |
| intervalType | Interval Type: 0 Minute, 1 Hour, 2 Day, 3 Week, 4 Month | false | integer | ||
| intervalNumber | Interval Number | false | integer | ||
| executeTime | Execution Time (Seconds, HH:mm:ss) | false | string | ||
| cron | Cron Expression | false | string | ||
| jobId | XXL-Job scheduled task ID | false | string | ||
| isDeleted | Logical deletion flag | false | integer | ||
| createdBy | Created By | false | string | ||
| createdTime | Created Time | false | string | ||
| updatedBy | Updated By | false | string | ||
| updatedTime | Updated Time | false | string | ||
| recurrentExecution | Recurrent Execution 1: Yes, 0: No | false | integer | ||
| version | Revision / Version | false | integer(int32) | ||
| isDeleted | Logical deletion flag | false | integer(int32) | ||
| createdBy | Created By | false | string | ||
| createdTime | Created Time | false | string(date-time) | ||
| updatedBy | Updated By | false | string | ||
| updatedTime | Updated Time | false | string(date-time) | ||
| testRun | 0 Trial Run, 1 Run | false | integer(int32) | ||
| deviceId | deviceId | false | integer(int64) | ||
| mspId | Scene ID | false | integer(int64) | ||
| workCardId | Work Card ID | false | integer(int64) | ||
| workCardName | Work Card Name | false | string | ||
| ids | Task IDs | false | array | integer(int64) | |
| filter | Filter whether it is an AR task | false | string | ||
| extraInfo | Extra Info | false | string | ||
| executedCount | Execution Record Count | false | integer(int64) | ||
| treeIds | Tree node IDs stored on the front end | false | array | integer(int64) | |
| beuTypes | All Task Point Types | false | array | integer(int32) | |
| taskDevs | Business devices | false | array | BisDevDto | |
| id | Primary Key | false | integer | ||
| type | Type: 1 Task Point, 2 Maintenance Area Point | false | integer | ||
| areaName | Area Name | false | string | ||
| bayName | Bay Name | false | string | ||
| mainDeviceName | Main Device Name | false | string | ||
| partName | Part Name | false | string | ||
| pointAndPhaseName | Level-5 point and phase name | false | string | ||
| devTypes | Collection devices | false | array | integer | |
| step | Execution Step | false | integer | ||
| bisId | bis_id | false | integer | ||
| devLevel | Inspection Point Level, supports different levels, 1 Site | true | integer | ||
| devId | Inspection Device/Point ID, corresponding power device or point ID | true | integer | ||
| devPointId | Robot or drone point | false | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultTaskDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | TaskDto | TaskDto | |
| id | Primary Key | integer(int64) | |
| taskCode | Task Code | string | |
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer(int32) | |
| types | Query by Multiple Task Types | array | integer(int32) |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | integer(int32) | |
| name | Task Name | string | |
| priority | Priority 1, 2, 3, 4 (higher number = higher priority) | integer(int32) | |
| singleton | 0 Single, 1 Multiple | integer(int32) | |
| releaseStatus | 0 Published, 1 Unpublished | integer(int32) | |
| firstPlanTime | First Execution Time | string(date-time) | |
| linkageType | Linkage Type 1: Linkage / 2: Sequential Control | integer(int32) | |
| pointNum | Number of Points | integer(int32) | |
| verifiedType | Verification Method: 0 Manual Review, 1 Automatic Review | integer(int32) | |
| executors | Executors | array | string |
| schedules | Task schedules | array | TaskScheduleDto |
| id | Primary Key ID | integer | |
| taskId | task_id | integer | |
| executeType | Execution Type: 1 Regular, 2 Cyclic (Month/Week/Day), 3 Interval, 4 Immediate, 5 Silent One-time | integer | |
| invalidStart | Unavailable Start Time (yyyy-MM-dd HH:mm:ss) | string | |
| invalidDue | Unavailable End Time (yyyy-MM-dd HH:mm:ss) | string | |
| fixedStartTime | Fixed execution time list (yyyy-MM-dd HH:mm:ss) | string | |
| startTime | Start Time (yyyy-MM-dd HH:mm:ss) | string | |
| endTime | Format yyyy-MM-dd HH:mm:ss | string | |
| cycleMonth | Cycle Months | array | integer |
| cycleWeek | Cycle Weeks | array | integer |
| cycleDay | Cycle Days | array | integer |
| intervalType | Interval Type: 0 Minute, 1 Hour, 2 Day, 3 Week, 4 Month | integer | |
| intervalNumber | Interval Number | integer | |
| executeTime | Execution Time (Seconds, HH:mm:ss) | string | |
| cron | Cron Expression | string | |
| jobId | XXL-Job scheduled task ID | string | |
| isDeleted | Logical deletion flag | integer | |
| createdBy | Created By | string | |
| createdTime | Created Time | string | |
| updatedBy | Updated By | string | |
| updatedTime | Updated Time | string | |
| recurrentExecution | Recurrent Execution 1: Yes, 0: No | integer | |
| version | Revision / Version | integer(int32) | |
| isDeleted | Logical deletion flag | integer(int32) | |
| createdBy | Created By | string | |
| createdTime | Created Time | string(date-time) | |
| updatedBy | Updated By | string | |
| updatedTime | Updated Time | string(date-time) | |
| testRun | 0 Trial Run, 1 Run | integer(int32) | |
| deviceId | deviceId | integer(int64) | |
| mspId | Scene ID | integer(int64) | |
| workCardId | Work Card ID | integer(int64) | |
| workCardName | Work Card Name | string | |
| ids | Task IDs | array | integer(int64) |
| filter | Filter whether it is an AR task | string | |
| extraInfo | Extra Info | string | |
| executedCount | Execution Record Count | integer(int64) | |
| treeIds | Tree node IDs stored on the front end | array | integer(int64) |
| beuTypes | All Task Point Types | array | integer(int32) |
| taskDevs | Business devices | array | BisDevDto |
| id | Primary Key | integer | |
| type | Type: 1 Task Point, 2 Maintenance Area Point | integer | |
| areaName | Area Name | string | |
| bayName | Bay Name | string | |
| mainDeviceName | Main Device Name | string | |
| partName | Part Name | string | |
| pointAndPhaseName | Level-5 point and phase name | string | |
| devTypes | Collection devices | array | integer |
| step | Execution Step | integer | |
| bisId | bis_id | integer | |
| devLevel | Inspection Point Level, supports different levels, 1 Site | integer | |
| devId | Inspection Device/Point ID, corresponding power device or point ID | integer | |
| devPointId | Robot or drone point | string | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
},
"timestamp": ""
}Response Code - 400:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 401:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 403:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 500:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Query Tasks by Page
Interface Address:/platform/api/v1/task/tasks/page
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| query | Pagination Query Criteria | query | true | Query | Query |
| current | Current Page (Default 1) | false | integer(int32) | ||
| size | Page Size (Default 10) | false | integer(int32) | ||
| column | Sort Column | false | array | string | |
| asc | Is Ascending | false | array | boolean | |
| taskDto | Task Template | query | true | TaskDto | TaskDto |
| id | Primary Key | true | integer(int64) | ||
| taskCode | Task Code | false | string | ||
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | true | integer(int32) | ||
| types | Query by Multiple Task Types | false | array | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | false | integer(int32) | ||
| name | Task Name | true | string | ||
| priority | Priority 1, 2, 3, 4 (higher number = higher priority) | false | integer(int32) | ||
| singleton | 0 Single, 1 Multiple | false | integer(int32) | ||
| releaseStatus | 0 Published, 1 Unpublished | false | integer(int32) | ||
| firstPlanTime | First Execution Time | false | string(date-time) | ||
| linkageType | Linkage Type 1: Linkage / 2: Sequential Control | false | integer(int32) | ||
| pointNum | Number of Points | false | integer(int32) | ||
| verifiedType | Verification Method: 0 Manual Review, 1 Automatic Review | false | integer(int32) | ||
| executors | Executors | false | array | string | |
| schedules | Task schedules | false | array | TaskScheduleDto | |
| id | Primary Key ID | true | integer | ||
| taskId | task_id | false | integer | ||
| executeType | Execution Type: 1 Regular, 2 Cyclic (Month/Week/Day), 3 Interval, 4 Immediate, 5 Silent One-time | false | integer | ||
| invalidStart | Unavailable Start Time (yyyy-MM-dd HH:mm:ss) | false | string | ||
| invalidDue | Unavailable End Time (yyyy-MM-dd HH:mm:ss) | false | string | ||
| fixedStartTime | Fixed execution time list (yyyy-MM-dd HH:mm:ss) | false | string | ||
| startTime | Start Time (yyyy-MM-dd HH:mm:ss) | false | string | ||
| endTime | Format yyyy-MM-dd HH:mm:ss | false | string | ||
| cycleMonth | Cycle Months | false | array | integer | |
| cycleWeek | Cycle Weeks | false | array | integer | |
| cycleDay | Cycle Days | false | array | integer | |
| intervalType | Interval Type: 0 Minute, 1 Hour, 2 Day, 3 Week, 4 Month | false | integer | ||
| intervalNumber | Interval Number | false | integer | ||
| executeTime | Execution Time (Seconds, HH:mm:ss) | false | string | ||
| cron | Cron Expression | false | string | ||
| jobId | XXL-Job scheduled task ID | false | string | ||
| isDeleted | Logical deletion flag | false | integer | ||
| createdBy | Created By | false | string | ||
| createdTime | Created Time | false | string | ||
| updatedBy | Updated By | false | string | ||
| updatedTime | Updated Time | false | string | ||
| recurrentExecution | Recurrent Execution 1: Yes, 0: No | false | integer | ||
| version | Revision / Version | false | integer(int32) | ||
| isDeleted | Logical deletion flag | false | integer(int32) | ||
| createdBy | Created By | false | string | ||
| createdTime | Created Time | false | string(date-time) | ||
| updatedBy | Updated By | false | string | ||
| updatedTime | Updated Time | false | string(date-time) | ||
| testRun | 0 Trial Run, 1 Run | false | integer(int32) | ||
| deviceId | deviceId | false | integer(int64) | ||
| mspId | Scene ID | false | integer(int64) | ||
| workCardId | Work Card ID | false | integer(int64) | ||
| workCardName | Work Card Name | false | string | ||
| ids | Task IDs | false | array | integer(int64) | |
| filter | Filter whether it is an AR task | false | string | ||
| extraInfo | Extra Info | false | string | ||
| executedCount | Execution Record Count | false | integer(int64) | ||
| treeIds | Tree node IDs stored on the front end | false | array | integer(int64) | |
| beuTypes | All Task Point Types | false | array | integer(int32) | |
| taskDevs | Business devices | false | array | BisDevDto | |
| id | Primary Key | false | integer | ||
| type | Type: 1 Task Point, 2 Maintenance Area Point | false | integer | ||
| areaName | Area Name | false | string | ||
| bayName | Bay Name | false | string | ||
| mainDeviceName | Main Device Name | false | string | ||
| partName | Part Name | false | string | ||
| pointAndPhaseName | Level-5 point and phase name | false | string | ||
| devTypes | Collection devices | false | array | integer | |
| step | Execution Step | false | integer | ||
| bisId | bis_id | false | integer | ||
| devLevel | Inspection Point Level, supports different levels, 1 Site | true | integer | ||
| devId | Inspection Device/Point ID, corresponding power device or point ID | true | integer | ||
| devPointId | Robot or drone point | false | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPageTaskDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | PageTaskDto | PageTaskDto | |
| records | Task Template | array | TaskDto |
| id | Primary Key | integer | |
| taskCode | Task Code | string | |
| type | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer | |
| types | Query by Multiple Task Types | array | integer |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | integer | |
| name | Task Name | string | |
| priority | Priority 1, 2, 3, 4 (higher number = higher priority) | integer | |
| singleton | 0 Single, 1 Multiple | integer | |
| releaseStatus | 0 Published, 1 Unpublished | integer | |
| firstPlanTime | First Execution Time | string | |
| linkageType | Linkage Type 1: Linkage / 2: Sequential Control | integer | |
| pointNum | Number of Points | integer | |
| verifiedType | Verification Method: 0 Manual Review, 1 Automatic Review | integer | |
| executors | Executors | array | string |
| schedules | Task schedules | array | TaskScheduleDto |
| id | Primary Key ID | integer | |
| taskId | task_id | integer | |
| executeType | Execution Type: 1 Regular, 2 Cyclic (Month/Week/Day), 3 Interval, 4 Immediate, 5 Silent One-time | integer | |
| invalidStart | Unavailable Start Time (yyyy-MM-dd HH:mm:ss) | string | |
| invalidDue | Unavailable End Time (yyyy-MM-dd HH:mm:ss) | string | |
| fixedStartTime | Fixed execution time list (yyyy-MM-dd HH:mm:ss) | string | |
| startTime | Start Time (yyyy-MM-dd HH:mm:ss) | string | |
| endTime | Format yyyy-MM-dd HH:mm:ss | string | |
| cycleMonth | Cycle Months | array | integer |
| cycleWeek | Cycle Weeks | array | integer |
| cycleDay | Cycle Days | array | integer |
| intervalType | Interval Type: 0 Minute, 1 Hour, 2 Day, 3 Week, 4 Month | integer | |
| intervalNumber | Interval Number | integer | |
| executeTime | Execution Time (Seconds, HH:mm:ss) | string | |
| cron | Cron Expression | string | |
| jobId | XXL-Job scheduled task ID | string | |
| isDeleted | Logical deletion flag | integer | |
| createdBy | Created By | string | |
| createdTime | Created Time | string | |
| updatedBy | Updated By | string | |
| updatedTime | Updated Time | string | |
| recurrentExecution | Recurrent Execution 1: Yes, 0: No | integer | |
| version | Revision / Version | integer | |
| isDeleted | Logical deletion flag | integer | |
| createdBy | Created By | string | |
| createdTime | Created Time | string | |
| updatedBy | Updated By | string | |
| updatedTime | Updated Time | string | |
| testRun | 0 Trial Run, 1 Run | integer | |
| deviceId | deviceId | integer | |
| mspId | Scene ID | integer | |
| workCardId | Work Card ID | integer | |
| workCardName | Work Card Name | string | |
| ids | Task IDs | array | integer |
| filter | Filter whether it is an AR task | string | |
| extraInfo | Extra Info | string | |
| executedCount | Execution Record Count | integer | |
| treeIds | Tree node IDs stored on the front end | array | integer |
| beuTypes | All Task Point Types | array | integer |
| taskDevs | Business devices | array | BisDevDto |
| id | Primary Key | integer | |
| type | Type: 1 Task Point, 2 Maintenance Area Point | integer | |
| areaName | Area Name | string | |
| bayName | Bay Name | string | |
| mainDeviceName | Main Device Name | string | |
| partName | Part Name | string | |
| pointAndPhaseName | Level-5 point and phase name | string | |
| devTypes | Collection devices | array | integer |
| step | Execution Step | integer | |
| bisId | bis_id | integer | |
| devLevel | Inspection Point Level, supports different levels, 1 Site | integer | |
| devId | Inspection Device/Point ID, corresponding power device or point ID | integer | |
| devPointId | Robot or drone point | string | |
| total | integer(int64) | ||
| size | integer(int64) | ||
| current | integer(int64) | ||
| orders | array | OrderItem | |
| column | string | ||
| asc | boolean | ||
| optimizeCountSql | boolean | ||
| searchCount | boolean | ||
| optimizeJoinOfCountSql | boolean | ||
| maxLimit | integer(int64) | ||
| countId | string | ||
| pages | integer(int64) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"records": [
{
"id": 0,
"taskCode": "",
"type": 0,
"types": [],
"inspectionType": 0,
"name": "",
"priority": 0,
"singleton": 0,
"releaseStatus": 0,
"firstPlanTime": "",
"linkageType": 0,
"pointNum": 0,
"verifiedType": 0,
"executors": [],
"schedules": [
{
"id": 0,
"taskId": 0,
"executeType": 0,
"invalidStart": "",
"invalidDue": "",
"fixedStartTime": "",
"startTime": "",
"endTime": "",
"cycleMonth": [],
"cycleWeek": [],
"cycleDay": [],
"intervalType": 0,
"intervalNumber": 0,
"executeTime": "",
"cron": "",
"jobId": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"recurrentExecution": 0
}
],
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"testRun": 0,
"deviceId": 0,
"mspId": 0,
"workCardId": 0,
"workCardName": "",
"ids": [],
"filter": "",
"extraInfo": "",
"executedCount": 0,
"treeIds": [],
"beuTypes": [],
"taskDevs": [
{
"id": 0,
"type": 0,
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointAndPhaseName": "",
"devTypes": [],
"step": 0,
"bisId": 0,
"devLevel": 0,
"devId": 0,
"devPointId": ""
}
]
}
],
"total": 0,
"size": 0,
"current": 0,
"orders": [
{
"column": "",
"asc": true
}
],
"optimizeCountSql": true,
"searchCount": true,
"optimizeJoinOfCountSql": true,
"maxLimit": 0,
"countId": "",
"pages": 0
},
"timestamp": ""
}Response Code - 400:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 401:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 403:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 500:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Task Instance Records
Interface Address:/platform/api/v1/task/instances/page
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| instanceQueryto | Task Instance Query | query | true | InstanceQueryto | InstanceQueryto |
| id | Task Instance ID | false | integer(int64) | ||
| taskId | Task ID | false | integer(int64) | ||
| taskIds | Task IDs | false | array | integer(int64) | |
| taskName | Task Name (Fuzzy Match) | false | string | ||
| taskCode | Task Code | false | string | ||
| taskPatrolledId | Execution ID | false | string | ||
| taskType | Inspection Task Type Filter | false | integer(int32) | ||
| taskTypes | Inspection Task Types | false | array | integer(int32) | |
| priority | Inspection Priority | false | integer(int32) | ||
| linkageType | Linkage Task Flag | false | integer(int32) | ||
| minPlanStartTime | Min Plan Start Time | false | string(date-time) | ||
| maxPlanStartTime | Max Plan Start Time | false | string(date-time) | ||
| minStartTime | Min Start Time | false | string(date-time) | ||
| maxStartTime | Max Start Time | false | string(date-time) | ||
| createdBy | Created By | false | string | ||
| runtimeStatuses | Runtime Status | false | array | integer(int32) | |
| testRun | 0 Trial Run, 1 Run | false | integer(int32) | ||
| mspId | Scene ID | false | integer(int64) | ||
| lastInstanceId | Latest Execution IDnstancesid | false | integer(int64) | ||
| query | Pagination Query Criteria | query | true | Query | Query |
| current | Current Page (Default 1) | false | integer(int32) | ||
| size | Page Size (Default 10) | false | integer(int32) | ||
| column | Sort Column | false | array | string | |
| asc | Is Ascending | false | array | boolean |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPageInstanceto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | PageInstanceto | PageInstanceto | |
| records | Instances | array | Instanceto |
| id | Primary Key | integer | |
| taskId | task_id | integer | |
| taskCode | task_code | string | |
| taskName | Task Name | string | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer | |
| pointNum | Number of Points | integer | |
| singleton | 0 Single, 1 Multiple | integer | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | integer | |
| executeType | Execution Type: 1 Regular, 2 Cyclic (Month/Week/Day), 3 Interval, 4 Immediate, 5 Silent One-time | integer | |
| taskPatrolledId | task_patrolled_id | string | |
| execId | Execution ID | string | |
| priority | Inspection Priority | integer | |
| runtimeStatus | Runtime Status: 1 Finished, 2 Executing, 3 Waiting, 4 Stopped, 5 Executing/Paused, 6 Paused, 7 Processing, 8 Higher Priority Task Exists, 9 Exception | integer | |
| planStartTime | Task Plan Start Time | string | |
| startTime | Task Execution Start Time | string | |
| endTime | Task Execution End Time | string | |
| verified | Verified Status | integer | |
| verifiedPerson | Verified By | string | |
| verifiedTime | Verified Time | string | |
| progress | Task Execution Progress | string | |
| abnormalPtCnt | Number of AI Verification Failures | integer | |
| normalPtCnt | Number of AI Verification Passes | integer | |
| linkageType | Linkage Type: 1 Smart, 2 Reverse | integer | |
| taskBeuStatus | 0 Normal, 1 Abnormal | integer | |
| video | Video Address | string | |
| version | Version No | integer | |
| isDeleted | Is Deleted (Logical): Deleted value (Default 1), Not deleted value | integer | |
| createdBy | Created By | string | |
| createdTime | Created Time | string | |
| updatedBy | Updated By | string | |
| updatedTime | Updated Time | string | |
| patrolConclusion | Inspection Conclusion | string | |
| reportUrl | Report URL | string | |
| testRun | 0 Trial Run, 1 Run | integer | |
| mspId | Scene ID | integer | |
| patrolPersonIds | Inspection Personnel ID | string | |
| patrolPersonNames | Inspection Personnel | string | |
| workCardId | Work Card ID | integer | |
| workCardName | Work Card Name | string | |
| executors | Executors | array | string |
| conclusion | 0 Waiting, 1 Normal, 2 Abnormal, 3 Executing | integer | |
| extraInfo | Extra Info | string | |
| total | integer(int64) | ||
| size | integer(int64) | ||
| current | integer(int64) | ||
| orders | array | OrderItem | |
| column | string | ||
| asc | boolean | ||
| optimizeCountSql | boolean | ||
| searchCount | boolean | ||
| optimizeJoinOfCountSql | boolean | ||
| maxLimit | integer(int64) | ||
| countId | string | ||
| pages | integer(int64) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"records": [
{
"id": 0,
"taskId": 0,
"taskCode": "",
"taskName": "",
"taskType": 0,
"pointNum": 0,
"singleton": 0,
"inspectionType": 0,
"executeType": 0,
"taskPatrolledId": "",
"execId": "",
"priority": 0,
"runtimeStatus": 0,
"planStartTime": "",
"startTime": "",
"endTime": "",
"verified": 0,
"verifiedPerson": "",
"verifiedTime": "",
"progress": "",
"abnormalPtCnt": 0,
"normalPtCnt": 0,
"linkageType": 0,
"taskBeuStatus": 0,
"video": "",
"version": 0,
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"patrolConclusion": "",
"reportUrl": "",
"testRun": 0,
"mspId": 0,
"patrolPersonIds": "",
"patrolPersonNames": "",
"workCardId": 0,
"workCardName": "",
"executors": [],
"conclusion": 0,
"extraInfo": ""
}
],
"total": 0,
"size": 0,
"current": 0,
"orders": [
{
"column": "",
"asc": true
}
],
"optimizeCountSql": true,
"searchCount": true,
"optimizeJoinOfCountSql": true,
"maxLimit": 0,
"countId": "",
"pages": 0
},
"timestamp": ""
}Response Code - 400:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 401:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 403:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Response Code - 500:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 0,
"message": "",
"data": {},
"timestamp": ""
}Query Task Point List for Task Instance
Interface Address:/platform/api/v1/task/results/result-page-beu
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| query | Pagination Query Criteria | query | true | Query | Query |
| current | Current Page, default first page | false | integer(int32) | ||
| size | Number per page, default 10 records per page | false | integer(int32) | ||
| column | Sort Field | false | array | string | |
| asc | Is Ascending Order | false | array | boolean | |
| resultDto | Result | query | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Unique identifier for requested analysis data, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | Inspection Task Record ID | false | integer(int64) | ||
| pointId | Task Point ID | false | integer(int64) | ||
| beuId | Execution Unit ID | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Photo Camera 4. Voiceprint, etc. | false | integer(int32) | ||
| algName | Algorithm Name | false | string | ||
| algId | Algorithm ID | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Unique Identifier of Device | false | string | ||
| hostCode | Unique Identifier of Robot, Drone | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | Device Name | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | Execution Status | false | integer(int32) | ||
| startTime | Execution Start Time | false | string(date-time) | ||
| endTime | Completion Time | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion: 1. Normal 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion: 1 Normal, 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | false | integer(int32) | ||
| finalConclusion | Final Conclusion: 1. Normal 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | false | integer(int32) | ||
| abnormalReason | Abnormal reason, records the reason why the point result status is abnormal. There may be multiple reasons, the content of abnormal reason is string array | false | array | string | |
| modifyResult | Revised Result | false | string | ||
| ftpImageUrl | FTP File URL | false | string | ||
| srcUrl | MinIO File | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | File Processed by the Algorithm | false | string | ||
| handleVideoUrl | Video Processed by the Algorithm | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitivity Label | false | integer(int32) | ||
| verified | Audit Status | false | integer(int32) | ||
| verifiedCause | Reason for Manual Review | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | Audit Time | false | string(date-time) | ||
| isDeleted | Logical Deletion | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | Creation Time | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | Report Time | false | string(date-time) | ||
| minUpdatedTime | Minimum Report Time | false | string | ||
| maxUpdatedTime | Maximum Report Time | false | string | ||
| taskName | Task Name | false | string | ||
| beuName | Execution Unit Name | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | Process Record | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task Point Group Name | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Sequence Number | false | string | ||
| mspId | Scene ID | false | integer(int64) | ||
| manualCheck | Manual Audit, Refer to ManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | Extra Information | false | string | ||
| areaId | Area ID | false | integer(int64) | ||
| bayId | Bay ID | false | integer(int64) | ||
| mainDeviceId | Main Device ID | false | integer(int64) | ||
| partId | Part ID | false | integer(int64) | ||
| algoRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| manualRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| realRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| positiveSampleAlg | Is Positive Sample Algorithm | false | boolean | ||
| modifyImageUrl | Image After Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | Is Defect | false | boolean | ||
| turnDefectTime | Turn Defect Time | false | string(date-time) | ||
| alarmLevel | Alarm Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPageBeuResultVO |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | PageBeuResultVO | PageBeuResultVO | |
| records | BeuDimensionResult | array | BeuResultVO |
| beuId | Task Point ID | integer | |
| beuName | Task Point Name | string | |
| beuType | Task Point Type | integer | |
| conclusion | Result status: 0 Pending Execution, 1 Normal, 2 Abnormal, 3 Execution Failure, 5 Unknown | integer | |
| needAuditCount | Total Audit Count | integer | |
| hasAuditCount | Audited Count | integer | |
| totalResultCount | ResultCount | integer | |
| latestResult | Result | ResultDto | ResultDto |
| id | Primary Key | integer | |
| requestId | Unique identifier for requested analysis data, UUID | string | |
| taskId | Task ID | integer | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer | |
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | integer | |
| taskTypes | Inspection Task Type Collection | array | integer |
| taskInsId | Inspection Task Record ID | integer | |
| pointId | Task Point ID | integer | |
| beuId | Execution Unit ID | integer | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Photo Camera 4. Voiceprint, etc. | integer | |
| algName | Algorithm Name | string | |
| algId | Algorithm ID | integer | |
| defectType | Major Type | string | |
| defectSubtype | Minor Type | string | |
| deviceCode | Unique Identifier of Device | string | |
| hostCode | Unique Identifier of Robot, Drone | string | |
| deviceId | Device Primary Key ID | integer | |
| deviceName | Device Name | string | |
| stepId | Step ID | integer | |
| runtimeStatus | Execution Status | integer | |
| startTime | Execution Start Time | string | |
| endTime | Completion Time | string | |
| result | Result | string | |
| resCode | Analysis Status Code | integer | |
| conclusion | Conclusion: 1. Normal 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | integer | |
| modifyConclusion | Revised Conclusion: 1 Normal, 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | integer | |
| finalConclusion | Final Conclusion: 1. Normal 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | integer | |
| abnormalReason | Abnormal reason, records the reason why the point result status is abnormal. There may be multiple reasons, the content of abnormal reason is string array | array | string |
| modifyResult | Revised Result | string | |
| ftpImageUrl | FTP File URL | string | |
| srcUrl | MinIO File | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | File Processed by the Algorithm | string | |
| handleVideoUrl | Video Processed by the Algorithm | string | |
| qualityResult | Image Quality | integer | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitivity Label | integer | |
| verified | Audit Status | integer | |
| verifiedCause | Reason for Manual Review | array | integer |
| verifiedPerson | Auditor | string | |
| verifiedTime | Audit Time | string | |
| isDeleted | Logical Deletion | integer | |
| createdBy | Creator | string | |
| createdTime | Creation Time | string | |
| updatedBy | Updater | string | |
| updatedTime | Report Time | string | |
| minUpdatedTime | Minimum Report Time | string | |
| maxUpdatedTime | Maximum Report Time | string | |
| taskName | Task Name | string | |
| beuName | Execution Unit Name | string | |
| resultDesc | Result Description | string | |
| processRecord | Process Record | integer | |
| remark | Remark | string | |
| pointGroupName | Task Point Group Name | string | |
| testRun | Test Run: 0 Trial Run, 1 Run | integer | |
| sequence | Unique Sequence Number | string | |
| mspId | Scene ID | integer | |
| manualCheck | Manual Audit, Refer to ManualCheckEnum | string | |
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | string | |
| extraInfo | Extra Information | string | |
| areaId | Area ID | integer | |
| bayId | Bay ID | integer | |
| mainDeviceId | Main Device ID | integer | |
| partId | Part ID | integer | |
| algoRoiList | ROI object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | ROI coordinate object | array | CoordinateDTO |
| x | X coordinate | string | |
| y | Y coordinate | string | |
| manualRoiList | ROI object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | ROI coordinate object | array | CoordinateDTO |
| x | X coordinate | string | |
| y | Y coordinate | string | |
| realRoiList | ROI object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | ROI coordinate object | array | CoordinateDTO |
| x | X coordinate | string | |
| y | Y coordinate | string | |
| positiveSampleAlg | Is Positive Sample Algorithm | boolean | |
| modifyImageUrl | Image After Manual Audit | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | Is Defect | boolean | |
| turnDefectTime | Turn Defect Time | string | |
| alarmLevel | Alarm Level | integer | |
| realResult | string | ||
| realConclusion | integer | ||
| positiveSampleAlg | boolean | ||
| total | integer(int64) | ||
| size | integer(int64) | ||
| current | integer(int64) | ||
| orders | array | OrderItem | |
| column | string | ||
| asc | boolean | ||
| optimizeCountSql | boolean | ||
| searchCount | boolean | ||
| optimizeJoinOfCountSql | boolean | ||
| maxLimit | integer(int64) | ||
| countId | string | ||
| pages | integer(int64) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"records": [
{
"beuId": 0,
"beuName": "",
"beuType": 0,
"conclusion": 0,
"needAuditCount": 0,
"hasAuditCount": 0,
"totalResultCount": 0,
"latestResult": {
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{}
],
"realRoiList": [
{}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
},
"positiveSampleAlg": true
}
],
"total": 0,
"size": 0,
"current": 0,
"orders": [
{
"column": "",
"asc": true
}
],
"optimizeCountSql": true,
"searchCount": true,
"optimizeJoinOfCountSql": true,
"maxLimit": 0,
"countId": "",
"pages": 0
},
"timestamp": ""
}Query Task Point Statistics for Task Instance
Interface Address:/platform/api/v1/task/results/beu-result-statistics
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| resultDto | Result | query | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Unique identifier for requested analysis data, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | Inspection Task Record ID | false | integer(int64) | ||
| pointId | Task Point ID | false | integer(int64) | ||
| beuId | Execution Unit ID | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Photo Camera 4. Voiceprint, etc. | false | integer(int32) | ||
| algName | Algorithm Name | false | string | ||
| algId | Algorithm ID | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Unique Identifier of Device | false | string | ||
| hostCode | Unique Identifier of Robot, Drone | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | Device Name | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | Execution Status | false | integer(int32) | ||
| startTime | Execution Start Time | false | string(date-time) | ||
| endTime | Completion Time | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion: 1. Normal 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion: 1 Normal, 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | false | integer(int32) | ||
| finalConclusion | Final Conclusion: 1. Normal 2 Abnormal 3 To Be Confirmed 4 Maintenance 5 Undifferentiated Result | false | integer(int32) | ||
| abnormalReason | Abnormal reason, records the reason why the point result status is abnormal. There may be multiple reasons, the content of abnormal reason is string array | false | array | string | |
| modifyResult | Revised Result | false | string | ||
| ftpImageUrl | FTP File URL | false | string | ||
| srcUrl | MinIO File | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | File Processed by the Algorithm | false | string | ||
| handleVideoUrl | Video Processed by the Algorithm | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitivity Label | false | integer(int32) | ||
| verified | Audit Status | false | integer(int32) | ||
| verifiedCause | Reason for Manual Review | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | Audit Time | false | string(date-time) | ||
| isDeleted | Logical Deletion | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | Creation Time | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | Report Time | false | string(date-time) | ||
| minUpdatedTime | Minimum Report Time | false | string | ||
| maxUpdatedTime | Maximum Report Time | false | string | ||
| taskName | Task Name | false | string | ||
| beuName | Execution Unit Name | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | Process Record | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task Point Group Name | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Sequence Number | false | string | ||
| mspId | Scene ID | false | integer(int64) | ||
| manualCheck | Manual Audit, Refer to ManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | Extra Information | false | string | ||
| areaId | Area ID | false | integer(int64) | ||
| bayId | Bay ID | false | integer(int64) | ||
| mainDeviceId | Main Device ID | false | integer(int64) | ||
| partId | Part ID | false | integer(int64) | ||
| algoRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| manualRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| realRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| positiveSampleAlg | Is Positive Sample Algorithm | false | boolean | ||
| modifyImageUrl | Image After Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | Is Defect | false | boolean | ||
| turnDefectTime | Turn Defect Time | false | string(date-time) | ||
| alarmLevel | Alarm Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultBeuResultStatisticsVO |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | BeuResultStatisticsVO | BeuResultStatisticsVO | |
| showType | Statistics display mode, corresponding to BeuResultStatisticShowTypeEnum | integer(int32) | |
| robotBeuCount | Robot Task Point Count | integer(int64) | |
| totalBeuCount | Total Task Point Count | integer(int64) | |
| abnormalBeuCount | Abnormal Task Point Count | integer(int64) | |
| finishBeuCount | Completed Task Point Count | integer(int64) | |
| notFinishBeuCount | Uncompleted Task Point Count | integer(int64) | |
| needAuditBeuCount | Count of All Task Points Requiring Audit | integer(int64) | |
| auditBeuCount | Audited Task Point Count | integer(int64) | |
| notAuditBeuCount | Unaudited Task Point Count | integer(int64) | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"showType": 0,
"robotBeuCount": 0,
"totalBeuCount": 0,
"abnormalBeuCount": 0,
"finishBeuCount": 0,
"notFinishBeuCount": 0,
"needAuditBeuCount": 0,
"auditBeuCount": 0,
"notAuditBeuCount": 0
},
"timestamp": ""
}Inspection Results
Inspection Report
Interface Address:/task/api/v1/records/task-report
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| id | Task execution record id | query | true | integer(int64) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPatrolReport |
Response Status Code-200:
Response Parameters:
| Parameter Name | Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | PatrolReport | PatrolReport | |
| head | Patrol Report Header | PatrolReportHead | PatrolReportHead |
| stationName | Substation | string | |
| voltageLevel | Voltage level | string | |
| patrolDate | Patrol date | string | |
| stationType | Substation Type | string | |
| taskName | Inspection Task | string | |
| weatherInterval | Environmental info | string | |
| verifiedPerson | Verified person | string | |
| verifiedTime | Verified time | string | |
| startTime | Patrol start time | string | |
| endTime | Patrol end time | string | |
| patrolStatistic | Patrol statistics | string | |
| patrolConclusion | Patrol conclusion | string | |
| abnormalPoints | Abnormal Points Summary | array | PatrolReportDetailExtend |
| areaName | Area | string | |
| bayName | Bay | string | |
| mainDeviceName | Main device | string | |
| partName | Part | string | |
| pointName | Point | string | |
| dataSource | Data source | string | |
| collectTime | Collect time | string | |
| result | Patrol result | string | |
| pointStatus | Point status | string | |
| abnormalReason | Abnormal reason | array | string |
| labeledPicture | Labeled picture | string | |
| picture | Picture | string | |
| baseImageUrl | Base image URL | string | |
| labeledPictureWithPicture | string | ||
| levelAndPhaseName | Level and phase name | string | |
| pointAndPhaseName | Point and phase name | string | |
| id | id | integer | |
| elepointId | Point id | integer | |
| dsId | Data source ID | integer | |
| presetNo | Preset Number | integer | |
| defectType | Identification Type | string | |
| defectSubtype | Identification Sub-type | string | |
| video | Video URL | string | |
| unverifiedPoints | Unverified Points Summary | array | PatrolReportDetailExtend |
| areaName | Area | string | |
| bayName | Bay | string | |
| mainDeviceName | Main device | string | |
| partName | Part | string | |
| pointName | Point | string | |
| dataSource | Data source | string | |
| collectTime | Collect time | string | |
| result | Patrol result | string | |
| pointStatus | Point status | string | |
| abnormalReason | Abnormal reason | array | string |
| labeledPicture | Labeled picture | string | |
| picture | Picture | string | |
| baseImageUrl | Base image URL | string | |
| labeledPictureWithPicture | string | ||
| levelAndPhaseName | Level and phase name | string | |
| pointAndPhaseName | Point and phase name | string | |
| id | id | integer | |
| elepointId | Point id | integer | |
| dsId | Data source ID | integer | |
| presetNo | Preset Number | integer | |
| defectType | Identification Type | string | |
| defectSubtype | Identification Sub-type | string | |
| video | Video URL | string | |
| normalPoints | Normal Points Summary | array | PatrolReportDetailExtend |
| areaName | Area | string | |
| bayName | Bay | string | |
| mainDeviceName | Main device | string | |
| partName | Part | string | |
| pointName | Point | string | |
| dataSource | Data source | string | |
| collectTime | Collect time | string | |
| result | Patrol result | string | |
| pointStatus | Point status | string | |
| abnormalReason | Abnormal reason | array | string |
| labeledPicture | Labeled picture | string | |
| picture | Picture | string | |
| baseImageUrl | Base image URL | string | |
| labeledPictureWithPicture | string | ||
| levelAndPhaseName | Level and phase name | string | |
| pointAndPhaseName | Point and phase name | string | |
| id | id | integer | |
| elepointId | Point id | integer | |
| dsId | Data source ID | integer | |
| presetNo | Preset Number | integer | |
| defectType | Identification Type | string | |
| defectSubtype | Identification Sub-type | string | |
| video | Video URL | string | |
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"head": {
"stationName": "",
"voltageLevel": "",
"patrolDate": "",
"stationType": "",
"taskName": "",
"weatherInterval": "",
"verifiedPerson": "",
"verifiedTime": "",
"startTime": "",
"endTime": "",
"patrolStatistic": "",
"patrolConclusion": ""
},
"abnormalPoints": [
{
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointName": "",
"dataSource": "",
"collectTime": "",
"result": "",
"pointStatus": "",
"abnormalReason": [],
"labeledPicture": "",
"picture": "",
"baseImageUrl": "",
"labeledPictureWithPicture": "",
"levelAndPhaseName": "",
"pointAndPhaseName": "",
"id": 0,
"elepointId": 0,
"dsId": 0,
"presetNo": 0,
"defectType": "",
"defectSubtype": "",
"video": ""
}
],
"unverifiedPoints": [
{
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointName": "",
"dataSource": "",
"collectTime": "",
"result": "",
"pointStatus": "",
"abnormalReason": [],
"labeledPicture": "",
"picture": "",
"baseImageUrl": "",
"labeledPictureWithPicture": "",
"levelAndPhaseName": "",
"pointAndPhaseName": "",
"id": 0,
"elepointId": 0,
"dsId": 0,
"presetNo": 0,
"defectType": "",
"defectSubtype": "",
"video": ""
}
],
"normalPoints": [
{
"areaName": "",
"bayName": "",
"mainDeviceName": "",
"partName": "",
"pointName": "",
"dataSource": "",
"collectTime": "",
"result": "",
"pointStatus": "",
"abnormalReason": [],
"labeledPicture": "",
"picture": "",
"baseImageUrl": "",
"labeledPictureWithPicture": "",
"levelAndPhaseName": "",
"pointAndPhaseName": "",
"id": 0,
"elepointId": 0,
"dsId": 0,
"presetNo": 0,
"defectType": "",
"defectSubtype": "",
"video": ""
}
]
},
"timestamp": ""
}Update Result
Interface Address:/platform/api/v1/task/results/update
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
RequestExample:
{
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"realRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
}Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| resultDto | Result | body | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Request Analysis Data Unique Identifier, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | InspectionTaskRecordID | false | integer(int64) | ||
| pointId | Task Pointid | false | integer(int64) | ||
| beuId | Execution Unitid | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | false | integer(int32) | ||
| algName | AlgorithmName | false | string | ||
| algId | Algorithmid | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Device Unique Identifier | false | string | ||
| hostCode | Unique Identifier of Robot or UAV | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | DeviceName | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | ExecutionStatus | false | integer(int32) | ||
| startTime | ExecutionStart Time | false | string(date-time) | ||
| endTime | CompleteTime | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | false | array | string | |
| modifyResult | RevisionResult | false | string | ||
| ftpImageUrl | ftpFileAddress | false | string | ||
| srcUrl | minioFile | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | AlgorithmProcessedFile | false | string | ||
| handleVideoUrl | AlgorithmProcessedInspectionVideo | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitive Mark | false | integer(int32) | ||
| verified | AuditStatus | false | integer(int32) | ||
| verifiedCause | Manual ConfirmationReason | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | AuditTime | false | string(date-time) | ||
| isDeleted | Logical Delete | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | CreateTime | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | ReportTime | false | string(date-time) | ||
| minUpdatedTime | MostMinorReportTime | false | string | ||
| maxUpdatedTime | MostMajorReportTime | false | string | ||
| taskName | TaskName | false | string | ||
| beuName | Execution UnitName | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | ProcessRecord | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task PointGroupName | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Serial Number | false | string | ||
| mspId | Sceneid | false | integer(int64) | ||
| manualCheck | Manual Audit, ReferenceManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | ExtraInfo | false | string | ||
| areaId | Areaid | false | integer(int64) | ||
| bayId | Intervalid | false | integer(int64) | ||
| mainDeviceId | PrimaryDeviceid | false | integer(int64) | ||
| partId | Componentid | false | integer(int64) | ||
| algoRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| manualRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| realRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| positiveSampleAlg | IsPositive SampleAlgorithm | false | boolean | ||
| modifyImageUrl | Image after Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | IsIs Defect | false | boolean | ||
| turnDefectTime | Convert to DefectTime | false | string(date-time) | ||
| alarmLevel | Alarmetc.Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | ResultDto | ResultDto | |
| id | Primary Key | integer(int64) | |
| requestId | Request Analysis Data Unique Identifier, UUID | string | |
| taskId | Task ID | integer(int64) | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | integer(int32) | |
| taskTypes | Inspection Task Type Collection | array | integer(int32) |
| taskInsId | InspectionTaskRecordID | integer(int64) | |
| pointId | Task Pointid | integer(int64) | |
| beuId | Execution Unitid | integer(int64) | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | integer(int32) | |
| algName | AlgorithmName | string | |
| algId | Algorithmid | integer(int64) | |
| defectType | Major Type | string | |
| defectSubtype | Minor Type | string | |
| deviceCode | Device Unique Identifier | string | |
| hostCode | Unique Identifier of Robot or UAV | string | |
| deviceId | Device Primary Key ID | integer(int64) | |
| deviceName | DeviceName | string | |
| stepId | Step ID | integer(int32) | |
| runtimeStatus | ExecutionStatus | integer(int32) | |
| startTime | ExecutionStart Time | string(date-time) | |
| endTime | CompleteTime | string(date-time) | |
| result | Result | string | |
| resCode | Analysis Status Code | integer(int32) | |
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | array | string |
| modifyResult | RevisionResult | string | |
| ftpImageUrl | ftpFileAddress | string | |
| srcUrl | minioFile | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | AlgorithmProcessedFile | string | |
| handleVideoUrl | AlgorithmProcessedInspectionVideo | string | |
| qualityResult | Image Quality | integer(int32) | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitive Mark | integer(int32) | |
| verified | AuditStatus | integer(int32) | |
| verifiedCause | Manual ConfirmationReason | array | integer(int32) |
| verifiedPerson | Auditor | string | |
| verifiedTime | AuditTime | string(date-time) | |
| isDeleted | Logical Delete | integer(int32) | |
| createdBy | Creator | string | |
| createdTime | CreateTime | string(date-time) | |
| updatedBy | Updater | string | |
| updatedTime | ReportTime | string(date-time) | |
| minUpdatedTime | MostMinorReportTime | string | |
| maxUpdatedTime | MostMajorReportTime | string | |
| taskName | TaskName | string | |
| beuName | Execution UnitName | string | |
| resultDesc | Result Description | string | |
| processRecord | ProcessRecord | integer(int32) | |
| remark | Remark | string | |
| pointGroupName | Task PointGroupName | string | |
| testRun | Test Run: 0 Trial Run, 1 Run | integer(int32) | |
| sequence | Unique Serial Number | string | |
| mspId | Sceneid | integer(int64) | |
| manualCheck | Manual Audit, ReferenceManualCheckEnum | string | |
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | string | |
| extraInfo | ExtraInfo | string | |
| areaId | Areaid | integer(int64) | |
| bayId | Intervalid | integer(int64) | |
| mainDeviceId | PrimaryDeviceid | integer(int64) | |
| partId | Componentid | integer(int64) | |
| algoRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| manualRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| realRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| positiveSampleAlg | IsPositive SampleAlgorithm | boolean | |
| modifyImageUrl | Image after Manual Audit | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | IsIs Defect | boolean | |
| turnDefectTime | Convert to DefectTime | string(date-time) | |
| alarmLevel | Alarmetc.Level | integer(int32) | |
| realResult | string | ||
| realConclusion | integer(int32) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{}
],
"realRoiList": [
{}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
},
"timestamp": ""
}Delete Result
Interface Address:/platform/api/v1/task/results/delete
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
RequestExample:
{
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"realRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
}Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| resultDto | Result | body | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Request Analysis Data Unique Identifier, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | InspectionTaskRecordID | false | integer(int64) | ||
| pointId | Task Pointid | false | integer(int64) | ||
| beuId | Execution Unitid | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | false | integer(int32) | ||
| algName | AlgorithmName | false | string | ||
| algId | Algorithmid | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Device Unique Identifier | false | string | ||
| hostCode | Unique Identifier of Robot or UAV | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | DeviceName | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | ExecutionStatus | false | integer(int32) | ||
| startTime | ExecutionStart Time | false | string(date-time) | ||
| endTime | CompleteTime | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | false | array | string | |
| modifyResult | RevisionResult | false | string | ||
| ftpImageUrl | ftpFileAddress | false | string | ||
| srcUrl | minioFile | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | AlgorithmProcessedFile | false | string | ||
| handleVideoUrl | AlgorithmProcessedInspectionVideo | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitive Mark | false | integer(int32) | ||
| verified | AuditStatus | false | integer(int32) | ||
| verifiedCause | Manual ConfirmationReason | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | AuditTime | false | string(date-time) | ||
| isDeleted | Logical Delete | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | CreateTime | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | ReportTime | false | string(date-time) | ||
| minUpdatedTime | MostMinorReportTime | false | string | ||
| maxUpdatedTime | MostMajorReportTime | false | string | ||
| taskName | TaskName | false | string | ||
| beuName | Execution UnitName | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | ProcessRecord | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task PointGroupName | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Serial Number | false | string | ||
| mspId | Sceneid | false | integer(int64) | ||
| manualCheck | Manual Audit, ReferenceManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | ExtraInfo | false | string | ||
| areaId | Areaid | false | integer(int64) | ||
| bayId | Intervalid | false | integer(int64) | ||
| mainDeviceId | PrimaryDeviceid | false | integer(int64) | ||
| partId | Componentid | false | integer(int64) | ||
| algoRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| manualRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| realRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| positiveSampleAlg | IsPositive SampleAlgorithm | false | boolean | ||
| modifyImageUrl | Image after Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | IsIs Defect | false | boolean | ||
| turnDefectTime | Convert to DefectTime | false | string(date-time) | ||
| alarmLevel | Alarmetc.Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | ResultDto | ResultDto | |
| id | Primary Key | integer(int64) | |
| requestId | Request Analysis Data Unique Identifier, UUID | string | |
| taskId | Task ID | integer(int64) | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | integer(int32) | |
| taskTypes | Inspection Task Type Collection | array | integer(int32) |
| taskInsId | InspectionTaskRecordID | integer(int64) | |
| pointId | Task Pointid | integer(int64) | |
| beuId | Execution Unitid | integer(int64) | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | integer(int32) | |
| algName | AlgorithmName | string | |
| algId | Algorithmid | integer(int64) | |
| defectType | Major Type | string | |
| defectSubtype | Minor Type | string | |
| deviceCode | Device Unique Identifier | string | |
| hostCode | Unique Identifier of Robot or UAV | string | |
| deviceId | Device Primary Key ID | integer(int64) | |
| deviceName | DeviceName | string | |
| stepId | Step ID | integer(int32) | |
| runtimeStatus | ExecutionStatus | integer(int32) | |
| startTime | ExecutionStart Time | string(date-time) | |
| endTime | CompleteTime | string(date-time) | |
| result | Result | string | |
| resCode | Analysis Status Code | integer(int32) | |
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | array | string |
| modifyResult | RevisionResult | string | |
| ftpImageUrl | ftpFileAddress | string | |
| srcUrl | minioFile | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | AlgorithmProcessedFile | string | |
| handleVideoUrl | AlgorithmProcessedInspectionVideo | string | |
| qualityResult | Image Quality | integer(int32) | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitive Mark | integer(int32) | |
| verified | AuditStatus | integer(int32) | |
| verifiedCause | Manual ConfirmationReason | array | integer(int32) |
| verifiedPerson | Auditor | string | |
| verifiedTime | AuditTime | string(date-time) | |
| isDeleted | Logical Delete | integer(int32) | |
| createdBy | Creator | string | |
| createdTime | CreateTime | string(date-time) | |
| updatedBy | Updater | string | |
| updatedTime | ReportTime | string(date-time) | |
| minUpdatedTime | MostMinorReportTime | string | |
| maxUpdatedTime | MostMajorReportTime | string | |
| taskName | TaskName | string | |
| beuName | Execution UnitName | string | |
| resultDesc | Result Description | string | |
| processRecord | ProcessRecord | integer(int32) | |
| remark | Remark | string | |
| pointGroupName | Task PointGroupName | string | |
| testRun | Test Run: 0 Trial Run, 1 Run | integer(int32) | |
| sequence | Unique Serial Number | string | |
| mspId | Sceneid | integer(int64) | |
| manualCheck | Manual Audit, ReferenceManualCheckEnum | string | |
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | string | |
| extraInfo | ExtraInfo | string | |
| areaId | Areaid | integer(int64) | |
| bayId | Intervalid | integer(int64) | |
| mainDeviceId | PrimaryDeviceid | integer(int64) | |
| partId | Componentid | integer(int64) | |
| algoRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| manualRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| realRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| positiveSampleAlg | IsPositive SampleAlgorithm | boolean | |
| modifyImageUrl | Image after Manual Audit | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | IsIs Defect | boolean | |
| turnDefectTime | Convert to DefectTime | string(date-time) | |
| alarmLevel | Alarmetc.Level | integer(int32) | |
| realResult | string | ||
| realConclusion | integer(int32) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{}
],
"realRoiList": [
{}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
},
"timestamp": ""
}Add Result
Interface Address:/platform/api/v1/task/results/add
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
RequestExample:
{
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"realRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
}Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| resultDto | Result | body | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Request Analysis Data Unique Identifier, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | InspectionTaskRecordID | false | integer(int64) | ||
| pointId | Task Pointid | false | integer(int64) | ||
| beuId | Execution Unitid | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | false | integer(int32) | ||
| algName | AlgorithmName | false | string | ||
| algId | Algorithmid | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Device Unique Identifier | false | string | ||
| hostCode | Unique Identifier of Robot or UAV | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | DeviceName | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | ExecutionStatus | false | integer(int32) | ||
| startTime | ExecutionStart Time | false | string(date-time) | ||
| endTime | CompleteTime | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | false | array | string | |
| modifyResult | RevisionResult | false | string | ||
| ftpImageUrl | ftpFileAddress | false | string | ||
| srcUrl | minioFile | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | AlgorithmProcessedFile | false | string | ||
| handleVideoUrl | AlgorithmProcessedInspectionVideo | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitive Mark | false | integer(int32) | ||
| verified | AuditStatus | false | integer(int32) | ||
| verifiedCause | Manual ConfirmationReason | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | AuditTime | false | string(date-time) | ||
| isDeleted | Logical Delete | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | CreateTime | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | ReportTime | false | string(date-time) | ||
| minUpdatedTime | MostMinorReportTime | false | string | ||
| maxUpdatedTime | MostMajorReportTime | false | string | ||
| taskName | TaskName | false | string | ||
| beuName | Execution UnitName | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | ProcessRecord | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task PointGroupName | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Serial Number | false | string | ||
| mspId | Sceneid | false | integer(int64) | ||
| manualCheck | Manual Audit, ReferenceManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | ExtraInfo | false | string | ||
| areaId | Areaid | false | integer(int64) | ||
| bayId | Intervalid | false | integer(int64) | ||
| mainDeviceId | PrimaryDeviceid | false | integer(int64) | ||
| partId | Componentid | false | integer(int64) | ||
| algoRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| manualRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| realRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| positiveSampleAlg | IsPositive SampleAlgorithm | false | boolean | ||
| modifyImageUrl | Image after Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | IsIs Defect | false | boolean | ||
| turnDefectTime | Convert to DefectTime | false | string(date-time) | ||
| alarmLevel | Alarmetc.Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | ResultDto | ResultDto | |
| id | Primary Key | integer(int64) | |
| requestId | Request Analysis Data Unique Identifier, UUID | string | |
| taskId | Task ID | integer(int64) | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | integer(int32) | |
| taskTypes | Inspection Task Type Collection | array | integer(int32) |
| taskInsId | InspectionTaskRecordID | integer(int64) | |
| pointId | Task Pointid | integer(int64) | |
| beuId | Execution Unitid | integer(int64) | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | integer(int32) | |
| algName | AlgorithmName | string | |
| algId | Algorithmid | integer(int64) | |
| defectType | Major Type | string | |
| defectSubtype | Minor Type | string | |
| deviceCode | Device Unique Identifier | string | |
| hostCode | Unique Identifier of Robot or UAV | string | |
| deviceId | Device Primary Key ID | integer(int64) | |
| deviceName | DeviceName | string | |
| stepId | Step ID | integer(int32) | |
| runtimeStatus | ExecutionStatus | integer(int32) | |
| startTime | ExecutionStart Time | string(date-time) | |
| endTime | CompleteTime | string(date-time) | |
| result | Result | string | |
| resCode | Analysis Status Code | integer(int32) | |
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | array | string |
| modifyResult | RevisionResult | string | |
| ftpImageUrl | ftpFileAddress | string | |
| srcUrl | minioFile | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | AlgorithmProcessedFile | string | |
| handleVideoUrl | AlgorithmProcessedInspectionVideo | string | |
| qualityResult | Image Quality | integer(int32) | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitive Mark | integer(int32) | |
| verified | AuditStatus | integer(int32) | |
| verifiedCause | Manual ConfirmationReason | array | integer(int32) |
| verifiedPerson | Auditor | string | |
| verifiedTime | AuditTime | string(date-time) | |
| isDeleted | Logical Delete | integer(int32) | |
| createdBy | Creator | string | |
| createdTime | CreateTime | string(date-time) | |
| updatedBy | Updater | string | |
| updatedTime | ReportTime | string(date-time) | |
| minUpdatedTime | MostMinorReportTime | string | |
| maxUpdatedTime | MostMajorReportTime | string | |
| taskName | TaskName | string | |
| beuName | Execution UnitName | string | |
| resultDesc | Result Description | string | |
| processRecord | ProcessRecord | integer(int32) | |
| remark | Remark | string | |
| pointGroupName | Task PointGroupName | string | |
| testRun | Test Run: 0 Trial Run, 1 Run | integer(int32) | |
| sequence | Unique Serial Number | string | |
| mspId | Sceneid | integer(int64) | |
| manualCheck | Manual Audit, ReferenceManualCheckEnum | string | |
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | string | |
| extraInfo | ExtraInfo | string | |
| areaId | Areaid | integer(int64) | |
| bayId | Intervalid | integer(int64) | |
| mainDeviceId | PrimaryDeviceid | integer(int64) | |
| partId | Componentid | integer(int64) | |
| algoRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| manualRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| realRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| positiveSampleAlg | IsPositive SampleAlgorithm | boolean | |
| modifyImageUrl | Image after Manual Audit | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | IsIs Defect | boolean | |
| turnDefectTime | Convert to DefectTime | string(date-time) | |
| alarmLevel | Alarmetc.Level | integer(int32) | |
| realResult | string | ||
| realConclusion | integer(int32) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{}
],
"realRoiList": [
{}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
},
"timestamp": ""
}Query Results by Page
Interface Address:/platform/api/v1/task/results/page
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| query | Pagination Query Criteria | query | true | Query | Query |
| current | Current Page,Default First Page | false | integer(int32) | ||
| size | Quantity per page,Default per page10ItemsRecord | false | integer(int32) | ||
| column | Sort Field | false | array | string | |
| asc | IsAscending | false | array | boolean | |
| resultDto | Result | query | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Request Analysis Data Unique Identifier, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | InspectionTaskRecordID | false | integer(int64) | ||
| pointId | Task Pointid | false | integer(int64) | ||
| beuId | Execution Unitid | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | false | integer(int32) | ||
| algName | AlgorithmName | false | string | ||
| algId | Algorithmid | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Device Unique Identifier | false | string | ||
| hostCode | Unique Identifier of Robot or UAV | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | DeviceName | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | ExecutionStatus | false | integer(int32) | ||
| startTime | ExecutionStart Time | false | string(date-time) | ||
| endTime | CompleteTime | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | false | array | string | |
| modifyResult | RevisionResult | false | string | ||
| ftpImageUrl | ftpFileAddress | false | string | ||
| srcUrl | minioFile | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | AlgorithmProcessedFile | false | string | ||
| handleVideoUrl | AlgorithmProcessedInspectionVideo | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitive Mark | false | integer(int32) | ||
| verified | AuditStatus | false | integer(int32) | ||
| verifiedCause | Manual ConfirmationReason | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | AuditTime | false | string(date-time) | ||
| isDeleted | Logical Delete | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | CreateTime | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | ReportTime | false | string(date-time) | ||
| minUpdatedTime | MostMinorReportTime | false | string | ||
| maxUpdatedTime | MostMajorReportTime | false | string | ||
| taskName | TaskName | false | string | ||
| beuName | Execution UnitName | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | ProcessRecord | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task PointGroupName | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Serial Number | false | string | ||
| mspId | Sceneid | false | integer(int64) | ||
| manualCheck | Manual Audit, ReferenceManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | ExtraInfo | false | string | ||
| areaId | Areaid | false | integer(int64) | ||
| bayId | Intervalid | false | integer(int64) | ||
| mainDeviceId | PrimaryDeviceid | false | integer(int64) | ||
| partId | Componentid | false | integer(int64) | ||
| algoRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| manualRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| realRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| positiveSampleAlg | IsPositive SampleAlgorithm | false | boolean | ||
| modifyImageUrl | Image after Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | IsIs Defect | false | boolean | ||
| turnDefectTime | Convert to DefectTime | false | string(date-time) | ||
| alarmLevel | Alarmetc.Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPageResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | PageResultDto | PageResultDto | |
| records | Result | array | ResultDto |
| id | Primary Key | integer | |
| requestId | Request Analysis Data Unique Identifier, UUID | string | |
| taskId | Task ID | integer | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer | |
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | integer | |
| taskTypes | Inspection Task Type Collection | array | integer |
| taskInsId | InspectionTaskRecordID | integer | |
| pointId | Task Pointid | integer | |
| beuId | Execution Unitid | integer | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | integer | |
| algName | AlgorithmName | string | |
| algId | Algorithmid | integer | |
| defectType | Major Type | string | |
| defectSubtype | Minor Type | string | |
| deviceCode | Device Unique Identifier | string | |
| hostCode | Unique Identifier of Robot or UAV | string | |
| deviceId | Device Primary Key ID | integer | |
| deviceName | DeviceName | string | |
| stepId | Step ID | integer | |
| runtimeStatus | ExecutionStatus | integer | |
| startTime | ExecutionStart Time | string | |
| endTime | CompleteTime | string | |
| result | Result | string | |
| resCode | Analysis Status Code | integer | |
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer | |
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer | |
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer | |
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | array | string |
| modifyResult | RevisionResult | string | |
| ftpImageUrl | ftpFileAddress | string | |
| srcUrl | minioFile | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | AlgorithmProcessedFile | string | |
| handleVideoUrl | AlgorithmProcessedInspectionVideo | string | |
| qualityResult | Image Quality | integer | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitive Mark | integer | |
| verified | AuditStatus | integer | |
| verifiedCause | Manual ConfirmationReason | array | integer |
| verifiedPerson | Auditor | string | |
| verifiedTime | AuditTime | string | |
| isDeleted | Logical Delete | integer | |
| createdBy | Creator | string | |
| createdTime | CreateTime | string | |
| updatedBy | Updater | string | |
| updatedTime | ReportTime | string | |
| minUpdatedTime | MostMinorReportTime | string | |
| maxUpdatedTime | MostMajorReportTime | string | |
| taskName | TaskName | string | |
| beuName | Execution UnitName | string | |
| resultDesc | Result Description | string | |
| processRecord | ProcessRecord | integer | |
| remark | Remark | string | |
| pointGroupName | Task PointGroupName | string | |
| testRun | Test Run: 0 Trial Run, 1 Run | integer | |
| sequence | Unique Serial Number | string | |
| mspId | Sceneid | integer | |
| manualCheck | Manual Audit, ReferenceManualCheckEnum | string | |
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | string | |
| extraInfo | ExtraInfo | string | |
| areaId | Areaid | integer | |
| bayId | Intervalid | integer | |
| mainDeviceId | PrimaryDeviceid | integer | |
| partId | Componentid | integer | |
| algoRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| manualRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| realRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| positiveSampleAlg | IsPositive SampleAlgorithm | boolean | |
| modifyImageUrl | Image after Manual Audit | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | IsIs Defect | boolean | |
| turnDefectTime | Convert to DefectTime | string | |
| alarmLevel | Alarmetc.Level | integer | |
| realResult | string | ||
| realConclusion | integer | ||
| total | integer(int64) | ||
| size | integer(int64) | ||
| current | integer(int64) | ||
| orders | array | OrderItem | |
| column | string | ||
| asc | boolean | ||
| optimizeCountSql | boolean | ||
| searchCount | boolean | ||
| optimizeJoinOfCountSql | boolean | ||
| maxLimit | integer(int64) | ||
| countId | string | ||
| pages | integer(int64) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {
"records": [
{
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{}
],
"realRoiList": [
{}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
}
],
"total": 0,
"size": 0,
"current": 0,
"orders": [
{
"column": "",
"asc": true
}
],
"optimizeCountSql": true,
"searchCount": true,
"optimizeJoinOfCountSql": true,
"maxLimit": 0,
"countId": "",
"pages": 0
},
"timestamp": ""
}Get Results
Interface Address:/platform/api/v1/task/results/list
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| resultDto | Result | query | true | ResultDto | ResultDto |
| id | Primary Key | true | integer(int64) | ||
| requestId | Request Analysis Data Unique Identifier, UUID | false | string | ||
| taskId | Task ID | false | integer(int64) | ||
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | false | integer(int32) | ||
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | false | integer(int32) | ||
| taskTypes | Inspection Task Type Collection | false | array | integer(int32) | |
| taskInsId | InspectionTaskRecordID | false | integer(int64) | ||
| pointId | Task Pointid | false | integer(int64) | ||
| beuId | Execution Unitid | false | integer(int64) | ||
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | false | integer(int32) | ||
| algName | AlgorithmName | false | string | ||
| algId | Algorithmid | false | integer(int64) | ||
| defectType | Major Type | false | string | ||
| defectSubtype | Minor Type | false | string | ||
| deviceCode | Device Unique Identifier | false | string | ||
| hostCode | Unique Identifier of Robot or UAV | false | string | ||
| deviceId | Device Primary Key ID | false | integer(int64) | ||
| deviceName | DeviceName | false | string | ||
| stepId | Step ID | false | integer(int32) | ||
| runtimeStatus | ExecutionStatus | false | integer(int32) | ||
| startTime | ExecutionStart Time | false | string(date-time) | ||
| endTime | CompleteTime | false | string(date-time) | ||
| result | Result | false | string | ||
| resCode | Analysis Status Code | false | integer(int32) | ||
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | false | integer(int32) | ||
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | false | array | string | |
| modifyResult | RevisionResult | false | string | ||
| ftpImageUrl | ftpFileAddress | false | string | ||
| srcUrl | minioFile | false | string | ||
| srcStreamUrl | Stream URL | false | string | ||
| handleImageUrl | AlgorithmProcessedFile | false | string | ||
| handleVideoUrl | AlgorithmProcessedInspectionVideo | false | string | ||
| qualityResult | Image Quality | false | integer(int32) | ||
| frequency | Frequency | false | string | ||
| soundPressure | Sound Pressure | false | string | ||
| sensitivityLabel | Sensitive Mark | false | integer(int32) | ||
| verified | AuditStatus | false | integer(int32) | ||
| verifiedCause | Manual ConfirmationReason | false | array | integer(int32) | |
| verifiedPerson | Auditor | false | string | ||
| verifiedTime | AuditTime | false | string(date-time) | ||
| isDeleted | Logical Delete | false | integer(int32) | ||
| createdBy | Creator | false | string | ||
| createdTime | CreateTime | false | string(date-time) | ||
| updatedBy | Updater | false | string | ||
| updatedTime | ReportTime | false | string(date-time) | ||
| minUpdatedTime | MostMinorReportTime | false | string | ||
| maxUpdatedTime | MostMajorReportTime | false | string | ||
| taskName | TaskName | false | string | ||
| beuName | Execution UnitName | false | string | ||
| resultDesc | Result Description | false | string | ||
| processRecord | ProcessRecord | false | integer(int32) | ||
| remark | Remark | false | string | ||
| pointGroupName | Task PointGroupName | false | string | ||
| testRun | Test Run: 0 Trial Run, 1 Run | false | integer(int32) | ||
| sequence | Unique Serial Number | false | string | ||
| mspId | Sceneid | false | integer(int64) | ||
| manualCheck | Manual Audit, ReferenceManualCheckEnum | false | string | ||
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | false | string | ||
| extraInfo | ExtraInfo | false | string | ||
| areaId | Areaid | false | integer(int64) | ||
| bayId | Intervalid | false | integer(int64) | ||
| mainDeviceId | PrimaryDeviceid | false | integer(int64) | ||
| partId | Componentid | false | integer(int64) | ||
| algoRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| manualRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| realRoiList | ROI Area Object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | roiCoordinate Object | false | array | CoordinateDTO | |
| x | X-axis | false | string | ||
| y | Y-axis | false | string | ||
| positiveSampleAlg | IsPositive SampleAlgorithm | false | boolean | ||
| modifyImageUrl | Image after Manual Audit | false | string | ||
| positiveSampleImageUrl | Positive Sample Image | false | string | ||
| defect | IsIs Defect | false | boolean | ||
| turnDefectTime | Convert to DefectTime | false | string(date-time) | ||
| alarmLevel | Alarmetc.Level | false | integer(int32) | ||
| realResult | false | string | |||
| realConclusion | false | integer(int32) |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultListResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | array | ResultDto | |
| id | Primary Key | integer(int64) | |
| requestId | Request Analysis Data Unique Identifier, UUID | string | |
| taskId | Task ID | integer(int64) | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer(int32) | |
| inspectionType | Inspection Type: 1 Routine Inspection, 2 Special Inspection, 3 Specific Inspection, 4 Custom Inspection | integer(int32) | |
| taskTypes | Inspection Task Type Collection | array | integer(int32) |
| taskInsId | InspectionTaskRecordID | integer(int64) | |
| pointId | Task Pointid | integer(int64) | |
| beuId | Execution Unitid | integer(int64) | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Voiceprint, etc. | integer(int32) | |
| algName | AlgorithmName | string | |
| algId | Algorithmid | integer(int64) | |
| defectType | Major Type | string | |
| defectSubtype | Minor Type | string | |
| deviceCode | Device Unique Identifier | string | |
| hostCode | Unique Identifier of Robot or UAV | string | |
| deviceId | Device Primary Key ID | integer(int64) | |
| deviceName | DeviceName | string | |
| stepId | Step ID | integer(int32) | |
| runtimeStatus | ExecutionStatus | integer(int32) | |
| startTime | ExecutionStart Time | string(date-time) | |
| endTime | CompleteTime | string(date-time) | |
| result | Result | string | |
| resCode | Analysis Status Code | integer(int32) | |
| conclusion | Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| modifyConclusion | Revised Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| finalConclusion | Final Conclusion 1.Normal 2Abnormal 3 Pending 4Maintenance 5Undifferentiated | integer(int32) | |
| abnormalReason | Abnormal reason. Records the reasons why the point result status is abnormal. Multiple reasons are allowed and stored as a string array. | array | string |
| modifyResult | RevisionResult | string | |
| ftpImageUrl | ftpFileAddress | string | |
| srcUrl | minioFile | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | AlgorithmProcessedFile | string | |
| handleVideoUrl | AlgorithmProcessedInspectionVideo | string | |
| qualityResult | Image Quality | integer(int32) | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitive Mark | integer(int32) | |
| verified | AuditStatus | integer(int32) | |
| verifiedCause | Manual ConfirmationReason | array | integer(int32) |
| verifiedPerson | Auditor | string | |
| verifiedTime | AuditTime | string(date-time) | |
| isDeleted | Logical Delete | integer(int32) | |
| createdBy | Creator | string | |
| createdTime | CreateTime | string(date-time) | |
| updatedBy | Updater | string | |
| updatedTime | ReportTime | string(date-time) | |
| minUpdatedTime | MostMinorReportTime | string | |
| maxUpdatedTime | MostMajorReportTime | string | |
| taskName | TaskName | string | |
| beuName | Execution UnitName | string | |
| resultDesc | Result Description | string | |
| processRecord | ProcessRecord | integer(int32) | |
| remark | Remark | string | |
| pointGroupName | Task PointGroupName | string | |
| testRun | Test Run: 0 Trial Run, 1 Run | integer(int32) | |
| sequence | Unique Serial Number | string | |
| mspId | Sceneid | integer(int64) | |
| manualCheck | Manual Audit, ReferenceManualCheckEnum | string | |
| roiArea | ROI area, including ROI annotations from the algorithm and the auditor | string | |
| extraInfo | ExtraInfo | string | |
| areaId | Areaid | integer(int64) | |
| bayId | Intervalid | integer(int64) | |
| mainDeviceId | PrimaryDeviceid | integer(int64) | |
| partId | Componentid | integer(int64) | |
| algoRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| manualRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| realRoiList | ROI Area Object | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | roiCoordinate Object | array | CoordinateDTO |
| x | X-axis | string | |
| y | Y-axis | string | |
| positiveSampleAlg | IsPositive SampleAlgorithm | boolean | |
| modifyImageUrl | Image after Manual Audit | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | IsIs Defect | boolean | |
| turnDefectTime | Convert to DefectTime | string(date-time) | |
| alarmLevel | Alarmetc.Level | integer(int32) | |
| realResult | string | ||
| realConclusion | integer(int32) | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": [
{
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"manualRoiList": [
{}
],
"realRoiList": [
{}
],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"realResult": "",
"realConclusion": 0
}
],
"timestamp": ""
}Audit Result
For standard algorithms, only the audit conclusion needs to be saved. For positive-sample algorithms, manually reviewed ROI boxes must also be provided and synchronized to the algorithm for feedback training.
Interface Address:/platform/api/v1/task/results/audit-result
Request Method:POST
Request Data Type:application/x-www-form-urlencoded,application/json
Response Data Type:*/*
Interface Description:
Request Example:
{
"resultId": 0,
"imageUrl": "",
"modifyConclusion": 0,
"manualRoiList": [
{
"rectType": "",
"rectValue": "",
"areas": [
{
"x": "",
"y": ""
}
]
}
],
"modifyImageUrl": ""
}Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | schema |
|---|---|---|---|---|---|
| auditRequest | Audit Request | body | true | AuditRequest | AuditRequest |
| resultId | Result ID | false | integer(int64) | ||
| imageUrl | Original Image URL | false | string | ||
| modifyConclusion | Revised Conclusion: 1 Normal, 2 Abnormal | false | integer(int32) | ||
| manualRoiList | ROI object | false | array | AreasDTO | |
| rectType | Type | false | string | ||
| rectValue | Result | false | string | ||
| areas | ROI coordinate object | false | array | CoordinateDTO | |
| x | X coordinate | false | string | ||
| y | Y coordinate | false | string | ||
| modifyImageUrl | Image URL After Manual Audit | false | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultVoid |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | integer(int32) | integer(int32) | |
| message | string | ||
| data | object | ||
| timestamp | string(date-time) | string(date-time) |
Response Example:
{
"code": 200,
"message": "",
"data": {},
"timestamp": ""
}Query Normal Inspection Point Results by Page
Interface Address:/task/api/v1/results/page-result
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | Schema |
|---|---|---|---|---|---|
| pointResultQueryDto | Inspection point record pagination query DTO | query | true | PointResultQueryDto | PointResultQueryDto |
| orgId | Substation ID | true | string | ||
| ids | Task point record IDs | false | array | long | |
| taskId | Task ID | false | long | ||
| taskType | Task Type | false | integer | ||
| taskInsId | Inspection task record ID | false | long | ||
| inspectionTypes | Inspection types | false | array | integer | |
| bayId | Bay ID | false | long | ||
| devId | Device ID | false | long | ||
| partId | Part ID | false | long | ||
| pointIds | Point IDs | false | array | long | |
| execStatuses | Execution status collection | false | array | integer | |
| result | Outcome | false | string | ||
| modifyResult | Modified result | false | string | ||
| hasConclusion | Has conclusion | false | boolean | ||
| conclusion | Conclusion (1: Normal, 2: Abnormal, 3: Normal (Pending manual confirmation), null/empty for no limit) | false | integer | ||
| conclusions | Conclusion collection (1: Normal, 2: Abnormal, 3: Normal (Pending manual confirmation), null/empty for no limit) | false | array | integer | |
| modifyConclusion | Modified conclusion | false | integer | ||
| beuType | BEU Type | false | integer | ||
| defectType | Defect type filter | false | string | ||
| defectSubtypes | Defect subtype filter | false | array | string | |
| areaNameFilters | Area name filter | false | string | ||
| bayNameFilters | Bay name filter | false | string | ||
| devNameFilters | Main Device Name Filter | false | string | ||
| partNameFilters | Part name filter | false | string | ||
| pointNameFilters | Point name filter | false | string | ||
| magnitude | Importance (1: Class I, 2: Class II, 3: Class III) | false | integer | ||
| minStartTime | Min start time | false | datetime | ||
| maxStartTime | Max start time | false | datetime | ||
| minEndTime | Min completion time | false | datetime | ||
| maxEndTime | Max completion time | false | datetime | ||
| minVerifiedTime | Min verification time | false | datetime | ||
| maxVerifiedTime | Max verification time | false | datetime | ||
| resCode | Result identifier | false | string | ||
| verified | Verification status (1: Verified, 0: Unverified) | false | integer | ||
| phyAssetId | Physical Asset ID | false | string | ||
| queryDefect | Whether to query defects | false | boolean | ||
| levelAndPhaseName | Level 5 point name | false | string | ||
| currentId | Current data ID | false | long | ||
| switchRes | Switch result (-1: Previous, 1: Next) | false | integer | ||
| query | Pagination query criteria | query | true | Query | Query |
| current | Current page, default 1st page | false | integer | ||
| size | Page size, default 10 records per page | false | integer | ||
| column | Sort column | false | array | string | |
| asc | Is ascending | false | array | boolean |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPagePowerResultDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | Code | integer | integer |
| message | Message | string | |
| data | Data | PagePowerResultDto | PagePowerResultDto |
| records | Power result list | array | PowerResultDto |
| id | Primary Key | integer | |
| requestId | Unique Identifier for Request Analysis Data, UUID | string | |
| taskId | Task ID | integer | |
| taskType | Task Type: 1 Camera Task, 2 AR Task, 3 Power Task, 4 Silent Power Monitoring Task | integer | |
| inspectionType | Inspection Type: 1 Routine, 2 Special, 3 Specific, 4 Custom | integer | |
| taskTypes | Inspection task type collection | array | integer |
| taskInsId | Inspection Task Record ID | integer | |
| pointId | Task Point ID | integer | |
| beuId | Execution Unit ID | integer | |
| beuType | 1. Streaming Camera, 2 Robot, 3 Snapshot Camera, 4 Audio, etc. | integer | |
| algName | Algorithm Name | string | |
| algId | Algorithm ID | integer | |
| defectType | Main Type | string | |
| defectSubtype | Sub Type | string | |
| deviceCode | Unique ID of Device | string | |
| hostCode | Unique ID of Robot/UAV | string | |
| deviceId | Device Primary Key ID | integer | |
| deviceName | Device Name | string | |
| stepId | Step ID | integer | |
| runtimeStatus | Execution Status | integer | |
| startTime | Execution Start Time | string | |
| endTime | Completion Time | string | |
| result | Outcome | string | |
| resCode | Analysis Status Code | integer | |
| conclusion | Conclusion: 1 Normal, 2 Abnormal, 3 To be confirmed, 4 Maintenance, 5 No result distinction | integer | |
| modifyConclusion | Modified Conclusion: 1 Normal, 2 Abnormal, 3 To be confirmed, 4 Maintenance, 5 No result distinction | integer | |
| finalConclusion | Final Conclusion: 1 Normal, 2 Abnormal, 3 To be confirmed, 4 Maintenance, 5 No result distinction | integer | |
| abnormalReason | Abnormal Reason (string array) | array | string |
| modifyResult | Modified Result | string | |
| ftpImageUrl | FTP Image URL | string | |
| srcUrl | MinIO File URL | string | |
| srcStreamUrl | Stream URL | string | |
| handleImageUrl | Algorithm Processed Image | string | |
| handleVideoUrl | Algorithm Processed Video | string | |
| qualityResult | Image Quality | integer | |
| frequency | Frequency | string | |
| soundPressure | Sound Pressure | string | |
| sensitivityLabel | Sensitivity Label | integer | |
| verified | Verification Status | integer | |
| verifiedCause | Manual Confirmation Reason | array | integer |
| verifiedPerson | Verifier | string | |
| verifiedTime | Verification Time | string | |
| isDeleted | Logical Delete | integer | |
| createdBy | Creator | string | |
| createdTime | Created Time | string | |
| updatedBy | Updater | string | |
| updatedTime | Report Time | string | |
| minUpdatedTime | Min Report Time | string | |
| maxUpdatedTime | Max Report Time | string | |
| taskName | Task Name | string | |
| beuName | Execution Unit Name | string | |
| resultDesc | Result Description | string | |
| processRecord | Process Record | integer | |
| remark | Remark | string | |
| pointGroupName | Task Point Group Name | string | |
| testRun | Test Run: 0 Test Run, 1 Run | integer | |
| sequence | Unique Serial Number | string | |
| mspId | Scene ID | integer | |
| manualCheck | Manual Verification, refer to ManualCheckEnum | string | |
| roiArea | ROI Area | string | |
| extraInfo | Extra Information | string | |
| areaId | Area ID | integer | |
| bayId | Bay ID | integer | |
| mainDeviceId | Main Device ID | integer | |
| partId | Part ID | integer | |
| algoRoiList | ROI object List | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | ROI coordinate object List | array | CoordinateDTO |
| x | X Coordinate | string | |
| y | Y Coordinate | string | |
| manualRoiList | Manual ROI object List | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | ROI coordinate object List | array | CoordinateDTO |
| x | X Coordinate | string | |
| y | Y Coordinate | string | |
| realRoiList | Real ROI object List | array | AreasDTO |
| rectType | Type | string | |
| rectValue | Result | string | |
| areas | ROI coordinate object List | array | CoordinateDTO |
| x | X Coordinate | string | |
| y | Y Coordinate | string | |
| positiveSampleAlg | Is Positive Sample Algorithm | boolean | |
| modifyImageUrl | Image after Manual Verification | string | |
| positiveSampleImageUrl | Positive Sample Image | string | |
| defect | Is Defect | boolean | |
| turnDefectTime | Turn to Defect Time | string | |
| alarmLevel | Alarm Level | integer | |
| devId | Device ID | integer | |
| pointName | Point Name | string | |
| partName | Part Name | string | |
| devName | Device Name | string | |
| bayName | Bay Name | string | |
| areaName | Area Name | string | |
| presetNo | Preset No | integer | |
| unit | Unit | string | |
| phase | Phase | string | |
| phyAssetId | Physical Asset ID | string | |
| alarmLower | Alarm Lower Limit | double | |
| warnLower | Warn Lower Limit | double | |
| alarmUpper | Alarm Upper Limit | double | |
| warnUpper | Warn Upper Limit | double | |
| meterType | Meter Type | string | |
| safetyMarker | Safety Marker | string | |
| descRes | Textual Description Result | string | |
| descModifyRes | Textual Description Modified Result | string | |
| levelAndPhaseName | Level 5 + Phase Name | string | |
| pointAndPhaseName | Point + Phase Name | string | |
| labelAttri | Point Tag Attribute | string | |
| pointResultDtoList | Result List | array | PowerResultDto |
| realResult | Real Result | string | |
| realConclusion | Real Conclusion | integer | |
| total | Total | long | |
| size | Size | long | |
| current | Current | long | |
| orders | Orders | array | OrderItem |
| column | Column | string | |
| asc | Is Ascending | boolean | |
| optimizeCountSql | Optimize Count SQL | boolean | |
| searchCount | Search Count | boolean | |
| optimizeJoinOfCountSql | Optimize Join Of Count SQL | boolean | |
| maxLimit | Max Limit | long | |
| countId | Count ID | string | |
| pages | Pages | long | |
| timestamp | Timestamp | datetime | datetime |
Response Example:
{
"code": 200,
"message": "",
"data": {
"records": [
{
"id": 0,
"requestId": "",
"taskId": 0,
"taskType": 0,
"inspectionType": 0,
"taskTypes": [],
"taskInsId": 0,
"pointId": 0,
"beuId": 0,
"beuType": 0,
"algName": "",
"algId": 0,
"defectType": "",
"defectSubtype": "",
"deviceCode": "",
"hostCode": "",
"deviceId": 0,
"deviceName": "",
"stepId": 0,
"runtimeStatus": 0,
"startTime": "",
"endTime": "",
"result": "",
"resCode": 0,
"conclusion": 0,
"modifyConclusion": 0,
"finalConclusion": 0,
"abnormalReason": [],
"modifyResult": "",
"ftpImageUrl": "",
"srcUrl": "",
"srcStreamUrl": "",
"handleImageUrl": "",
"handleVideoUrl": "",
"qualityResult": 0,
"frequency": "",
"soundPressure": "",
"sensitivityLabel": 0,
"verified": 0,
"verifiedCause": [],
"verifiedPerson": "",
"verifiedTime": "",
"isDeleted": 0,
"createdBy": "",
"createdTime": "",
"updatedBy": "",
"updatedTime": "",
"minUpdatedTime": "",
"maxUpdatedTime": "",
"taskName": "",
"beuName": "",
"resultDesc": "",
"processRecord": 0,
"remark": "",
"pointGroupName": "",
"testRun": 0,
"sequence": "",
"mspId": 0,
"manualCheck": "",
"roiArea": "",
"extraInfo": "",
"areaId": 0,
"bayId": 0,
"mainDeviceId": 0,
"partId": 0,
"algoRoiList": [],
"manualRoiList": [],
"realRoiList": [],
"positiveSampleAlg": true,
"modifyImageUrl": "",
"positiveSampleImageUrl": "",
"defect": true,
"turnDefectTime": "",
"alarmLevel": 0,
"devId": 0,
"pointName": "",
"partName": "",
"devName": "",
"bayName": "",
"areaName": "",
"presetNo": 0,
"unit": "",
"phase": "",
"phyAssetId": "",
"alarmLower": 0,
"warnLower": 0,
"alarmUpper": 0,
"warnUpper": 0,
"meterType": "",
"safetyMarker": "",
"descRes": "",
"descModifyRes": "",
"levelAndPhaseName": "",
"pointAndPhaseName": "",
"labelAttri": "",
"pointResultDtoList": [],
"realResult": "",
"realConclusion": 0
}
],
"total": 0,
"size": 0,
"current": 0,
"orders": [
{
"column": "",
"asc": true
}
],
"optimizeCountSql": true,
"searchCount": true,
"optimizeJoinOfCountSql": true,
"maxLimit": 0,
"countId": "",
"pages": 0
},
"timestamp": ""
}Inspection Points
Query Power Points by Criteria
Interface Address:/point/api/v1/eledev/elepoints
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | Schema |
|---|---|---|---|---|---|
| dto | Power point pagination query DTO | query | true | ElepointQueryDto | ElepointQueryDto |
| current | Current page, default 1st page | false | integer | ||
| size | Page size, default 10 records per page | false | integer | ||
| column | Sort column | false | array | string | |
| asc | Is ascending | false | array | boolean | |
| stationCode | Substation Org ID | true | string | ||
| nameFilters | Name fuzzy query | false | string | ||
| type | Point type: 1-Normal point, 2-Silent monitoring point | false | integer | ||
| areaId | Area ID | false | long | ||
| bayId | Bay ID | false | long | ||
| mainDeviceId | Main device ID | false | long | ||
| partId | Part ID | false | long | ||
| bindCamera | Is bound to preset | false | boolean | ||
| pointName | Physical point name | false | string | ||
| defectType | Algorithm analysis type | false | string | ||
| defectSubtype | Algorithm analysis subtype, fuzzy query supported; pass 'NULL' for unclassified records | false | string | ||
| isConfigured | Algorithm configured: 1-Yes, 0-No | false | integer | ||
| bindMark | Is bound to focus area | false | boolean | ||
| switchRes | -1: Previous, 1: Next | false | integer | ||
| index | Index | false | integer | ||
| devTypes | Bound inspection device type | false | array | integer |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultPagePowerElepointDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | Code | integer | integer |
| message | Message | string | |
| data | Data | PagePowerElepointDto | PagePowerElepointDto |
| records | Point List | array | PowerElepointDto |
| id | Primary Key | integer | |
| parentId | Parent ID | integer | |
| type | Point type: 1-Normal point, 2-Silent monitoring point | integer | |
| pmsCode | Unique ID inside PMS System | string | |
| businessCode | Business Platform ID, Unique ID | string | |
| stationCode | Substation Code | string | |
| name | Point name | string | |
| defectType | Defect type (Main type) | string | |
| defectSubtype | Defect subtype | array | string |
| areaId | Area ID | integer | |
| areaName | Area name | string | |
| bayId | Bay ID | integer | |
| bayName | Bay name | string | |
| mainDeviceId | Main device ID | integer | |
| mainDeviceName | Main Device Name | string | |
| partId | Part ID | integer | |
| partName | Part name | string | |
| phase | Phase: A, B, C, AB, AC, BC, ABC | string | |
| magnitude | Importance: 1 Class I, 2 Class II, 3 Class III | integer | |
| alarmLevel | Alarm level: 4-Critical, 3-Serious, 2-General, 1-Warning | integer | |
| mendState | Maintenance state: 0 normal, 1 maintenance, 2 scrapped | integer | |
| dft | Reference Status: 0 Open, 1 Close | integer | |
| alarmLower | Alarm lower limit | double | |
| warnLower | Warn lower limit | double | |
| alarmUpper | Alarm upper limit | double | |
| warnUpper | Warn upper limit | double | |
| alarmPoint | Is alarm point: 1 Yes, 2 No | integer | |
| unit | Unit of value | string | |
| syntheticalEval | Synthetical Eval: used for multi-source judgment. 1 Yes, 2 No | string | |
| baseImageUrl | Base Image URL | string | |
| inspectionType | Inspection type | string | |
| dataFormat | Data format | array | string |
| coordinate | Coordinate | string | |
| devTypes | Power point inspection device type list | array | integer |
| stationNo | Station No | string | |
| signalNo | Monitoring index No | string | |
| meterType | Meter type | string | |
| meterPlateType | Meter plate type: 1-Digital, 2-Analog | integer | |
| labelAttri | Point tag attribute | string | |
| initValue | Initial value | string | |
| targetStatus | Target status: Open/Close, On/Off | string | |
| targetStatusList | Initial status list | array | TargetStatus |
| name | Name | string | |
| status | Status | string | |
| statusMeaningList | Status meaning list | array | StatusMeaningDto |
| status | Status | string | |
| statusMeaning | Status meaning | string | |
| threePhasePointIds | Three-phase point IDs | array | integer |
| beuList | Basic execution unit list | array | BasicExecuteUnitDto |
| rect | Rect | array | |
| samImageUrl | Sample Image URL | string | |
| pointCoorList | Point Coordinates | string | |
| previewImageUrl | Preview Image URL | string | |
| samMode | Sample Mode | integer | |
| id | ID | integer | |
| pointId | Point ID | integer | |
| name | Name | string | |
| uuid | UUID | string | |
| imageUrl | Image URL | string | |
| description | Description | string | |
| protocolVersion | Protocol Version | string | |
| type | Type | integer | |
| subType | Sub Type | integer | |
| devicePointId | Device Point ID | string | |
| sendCode | Send Code | string | |
| lifeCycle | Life Cycle | integer | |
| srcConfig | Source Config | array | |
| presets | Presets | array | PresetDto |
| id | Primary Key | integer | |
| type | Type: 1-Visible Light, 2-Infrared | integer | |
| cameraId | Camera ID | integer | |
| name | Preset Name | string | |
| presetNo | Preset No | integer | |
| isHome | Is home position: 0 No, 1 Yes | integer | |
| homeTime | Home wait time (seconds) | integer | |
| infraredArea | Infrared preset area coordinates | string | |
| imgUrl | Screenshot URL | string | |
| device | Device Account | DeviceAccountDto | DeviceAccountDto |
| id | Primary Key | integer | |
| parentId | Parent ID | integer | |
| areaId | Power device tree area ID | integer | |
| mainDeviceIds | Associated power device IDs | array | integer |
| devType | Device Type | integer | |
| devSubType | Device Subtype | integer | |
| devName | Device Name | string | |
| devDesc | Description | string | |
| devModel | Device Model | string | |
| manufacturer | Manufacturer | string | |
| madein | Country of Origin | string | |
| productionNum | Factory Number | string | |
| productionDate | Factory Date | string | |
| hwRev | Hardware Version | string | |
| swRev | Software Version | string | |
| swRevCrc | Software Version CRC | string | |
| ipAddr | Ethernet IP Address | string | |
| macAddr | Ethernet MAC Address | string | |
| phyAssetId | Physical ID | string | |
| positionX | Relative spatial position x | string | |
| positionY | Relative spatial position y | string | |
| region | Region ID | string | |
| cabinet | Cabinet ID | string | |
| hostCode | Host Code | string | |
| useUnit | Usage Unit | string | |
| deviceSource | Device Source | string | |
| deviceCode | Device Code | string | |
| iotSubType | IoT Subtype | string | |
| iotDynamicAttribute | IoT Dynamic Attribute | array | object |
| istransport | Is Rotating | integer | |
| useMode | Usage Type | integer | |
| videoMode | Video Type | integer | |
| place | Installation place | string | |
| patroldeviceInfo | Remark info | string | |
| supportAudio | Supports audio: 1 Yes, 0 No | integer | |
| audioDecoderTag | Audio Decoder Tag | integer | |
| cpuRatAlmSpt | CPU Load Alarm Setting | double | |
| memRatAlmSpt | Memory Usage Alarm Setting | double | |
| diskSizeAlmSpt | Disk Usage Alarm Setting | double | |
| diskSizeAlm | Disk Capacity Alarm Setting | double | |
| recordRatAlmSpt | Recording Integrity Alarm Setting | double | |
| electricityAlmSpt | Battery Level Alarm Setting | double | |
| horizontalSpeedAlm | Horizontal Speed Alarm Setting | double | |
| sensitivityLabel | Sensitivity Label Level | integer | |
| pullData | Pull Data | boolean | |
| visibleRtspUrlMaster | Visible RTSP (Main) | string | |
| visibleRtspUrlSecondary | Visible RTSP (Sub) | string | |
| infraredRtspUrlMaster | Infrared RTSP (Main) | string | |
| infraredRtspUrlSecondary | Infrared RTSP (Sub) | string | |
| sipDeviceCode | GB Device Code | string | |
| sipIp | SIP IP | string | |
| sipPort | SIP Port | integer | |
| sipVisibleChannel | Visible Channel ID | string | |
| sipInfraredChannel | Infrared Channel ID | string | |
| sipProtocol | SIP Protocol (TCP/UDP) | integer | |
| sipRtspType | RTSP URL Type | integer | |
| sipIsGb | Is GB | integer | |
| fileCameraUrl | File Camera URL | string | |
| presetNumber | Preset Quantity | integer | |
| presetImportProcess | Preset Import Progress | double | |
| presetImportStatus | Preset Import Status | integer | |
| position | Coordinate | string | |
| rotation | Rotation | string | |
| zoom | Zoom | double | |
| security | Is script camera | boolean | |
| labels | Extended Labels | object | |
| annotations | Extended Annotations | object | |
| online | Online Status | integer | |
| createdTime | Created Time | string | |
| areaName | Area Name | string | |
| devTypeName | Device Type Name | string | |
| devSubTypeName | Type Name | string | |
| usedBueList | BEU List used by Tasks | array | BeuDto |
| id | ID | integer | |
| pointId | Point ID | integer | |
| name | Execution Unit Name | string | |
| isBandContent | Is Bound to Digital Twin | boolean | |
| mspNameList | Associated Scene Names | array | string |
| drtmImgUrl | string | ||
| deviceConfig | Device Account | DeviceAccountDto | DeviceAccountDto |
| dataPoints | Data Points | string | |
| createdBy | Creator | string | |
| createdTime | Created Time | string | |
| updatedBy | Updater | string | |
| updatedTime | Report Time | string | |
| taskStatus | Task Status | integer | |
| taskName | Task Name | string | |
| status | Status | integer | |
| retRestAPIUrl | Ret Rest API URL | string | |
| retDetectStreamUrl | Ret Detect Stream URL | string | |
| beuStatus | BEU Status | integer | |
| beuBusinessLocation | BEU Business Location | array | |
| publishStatus | Publish Status | integer | |
| publishTime | Publish Time | string | |
| operatingPointId | Operating Point ID | integer | |
| mspId | Scene ID | integer | |
| groupId | Group ID | integer | |
| groupName | Group Name | string | |
| execStep | Execution Step | integer | |
| indexOrder | Index Order | integer | |
| operatingPoint | Operating Point DTO | OperatingPointDto | OperatingPointDto |
| id | ID | integer | |
| name | Name | string | |
| type | Type | integer | |
| x | X | double | |
| y | Y | double | |
| z | Z | double | |
| theta | Theta | double | |
| quaternions | Quaternions | Quaternions | Quaternions |
| x | X | double | |
| y | Y | double | |
| z | Z | double | |
| w | W | double | |
| mspId | Scene ID | integer | |
| uniqueIdentification | Unique Identification | string | |
| createdBy | Creator | string | |
| createdTime | Created Time | string | |
| updatedBy | Updater | string | |
| updatedTime | Updated Time | string | |
| pixelX | Pixel X | integer | |
| pixelY | Pixel Y | integer | |
| singleImage | Single Image | string | |
| isRawCoordinateIsNull | Is Raw Coordinate Null | boolean | |
| source | Source | integer | |
| level | Level | string | |
| gait | Gait | integer | |
| manner | Manner | integer | |
| contentModel | Content Model | string | |
| eventTriggeredCondition | Event Trigger Condition | string | |
| eventTriggeredSupport | Event Trigger Support | integer | |
| videoDuration | Video Duration | integer | |
| obstacle | Obstacle Avoidance | integer | |
| eventTriggeredPoint | Event Trigger Point | string | |
| navMode | Nav Mode | integer | |
| pointSource | Point Source | integer | |
| navSpeed | Nav Speed | integer | |
| height | Height | integer | |
| recognitionType | Recognition Type | integer | |
| withFigure | With Figure | integer | |
| eventStopPoint | Event Stop Point | string | |
| eventStopCondition | Event Stop Condition | string | |
| indexInGroup | Index in Group | integer | |
| roiPicUploadedTime | ROI Pic Uploaded Time | string | |
| dockId | Dock ID | string | |
| robotType | Robot Type | string | |
| robotName | Robot Name | string | |
| benchmarkImage | Benchmark Image | string | |
| signalValue | Signal Value | string | |
| used | Is used | boolean | |
| levelAndPhaseName | Level 5 + Phase Name | string | |
| pointAndPhaseName | Point + Phase Name | string | |
| deviceType | Main device type | string | |
| model | Model | string | |
| algId | Algorithm model ID | long | |
| algTestResultUrl | Algorithm test result image | string | |
| algTestStatus | Algorithm test status | integer | |
| baseImageValue | Base image value | string | |
| pointName | Physical point | string | |
| bindCamera | Is bound to camera/preset | boolean | |
| bindMark | Is bound to focus area | boolean | |
| total | Total | long | |
| size | Size | long | |
| current | Current | long | |
| orders | Orders | array | OrderItem |
| column | Column | string | |
| asc | Is Ascending | boolean | |
| optimizeCountSql | Optimize Count SQL | boolean | |
| searchCount | Search Count | boolean | |
| optimizeJoinOfCountSql | Optimize Join Of Count SQL | boolean | |
| maxLimit | Max Limit | long | |
| countId | Count ID | string | |
| pages | Pages | long | |
| timestamp | Timestamp | datetime | datetime |
Get Power Point List by IDs
Interface Address:/point/api/v1/eledev/elepoints/ids
Request Method:GET
Request Data Type:application/x-www-form-urlencoded
Response Data Type:*/*
Interface Description:
Request Parameters:
| Parameter Name | Parameter Description | Request Type | Required | Data Type | Schema |
|---|---|---|---|---|---|
| id | query | true | IdsDto | IdsDto | |
| id | false | array | long | ||
| identification | false | string |
Response Status:
| Status Code | Description | schema |
|---|---|---|
| 200 | OK | CommonResultListElepointDto |
Response Status Code-200:
Response Parameters:
| Parameter Name | Parameter Description | Type | schema |
|---|---|---|---|
| code | Code | integer | integer |
| message | Message | string | |
| data | Data | array | ElepointDto |
| id | Primary Key | long | |
| parentId | Parent ID | long | |
| type | Point type: 1-Normal point, 2-Silent monitoring point | integer | |
| pmsCode | Unique ID inside PMS System | string | |
| businessCode | Business Platform ID, Unique ID | string | |
| stationCode | Substation Code | string | |
| name | Point name | string | |
| defectType | Defect type (Main type) | string | |
| defectSubtype | Defect subtype | array | string |
| areaId | Area ID | long | |
| areaName | Area name | string | |
| bayId | Bay ID | long | |
| bayName | Bay name | string | |
| mainDeviceId | Main device ID | long | |
| mainDeviceName | Main Device Name | string | |
| partId | Part ID | long | |
| partName | Part name | string | |
| phase | Phase: A, B, C, AB, AC, BC, ABC | string | |
| magnitude | Importance: 1 Class I, 2 Class II, 3 Class III | integer | |
| alarmLevel | Alarm level: 4-Critical, 3-Serious, 2-General, 1-Warning | integer | |
| mendState | Maintenance state: 0 normal, 1 maintenance, 2 scrapped | integer | |
| dft | Reference Status: 0 Open, 1 Close | integer | |
| alarmLower | Alarm lower limit | double | |
| warnLower | Warn lower limit | double | |
| alarmUpper | Alarm upper limit | double | |
| warnUpper | Warn upper limit | double | |
| alarmPoint | Is alarm point: 1 Yes, 2 No | integer | |
| unit | Unit of value | string | |
| syntheticalEval | Synthetical Eval: used for multi-source judgment. 1 Yes, 2 No | string | |
| baseImageUrl | Base Image URL | string | |
| inspectionType | Inspection type | string | |
| dataFormat | Data format | array | string |
| coordinate | Coordinate | string | |
| devTypes | Power point inspection device type list | array | integer |
| stationNo | Station No | string | |
| signalNo | Monitoring index No | string | |
| meterType | Meter type | string | |
| meterPlateType | Meter plate type: 1-Digital, 2-Analog | integer | |
| labelAttri | Point tag attribute | string | |
| initValue | Initial value | string | |
| targetStatus | Target status | string | |
| targetStatusList | Initial status list | array | TargetStatus |
| name | Name | string | |
| status | Status | string | |
| statusMeaningList | Status meaning list | array | StatusMeaningDto |
| status | Status | string | |
| statusMeaning | Status meaning | string | |
| threePhasePointIds | Three-phase point list | array | long |
| beuList | Basic execution unit list | array | BasicExecuteUnitDto |
| rect | Rect | array | |
| samImageUrl | Sample Image URL | string | |
| pointCoorList | Point Coordinates | string | |
| previewImageUrl | Preview Image URL | string | |
| samMode | Sample Mode | integer | |
| id | ID | integer | |
| pointId | Point ID | integer | |
| name | Name | string | |
| uuid | UUID | string | |
| imageUrl | Image URL | string | |
| description | Description | string | |
| protocolVersion | Protocol Version | string | |
| type | Type | integer | |
| subType | Sub Type | integer | |
| devicePointId | Device Point ID | string | |
| sendCode | Send Code | string | |
| lifeCycle | Life Cycle | integer | |
| srcConfig | Source Config | array | |
| presets | Presets | array | PresetDto |
| device | Device Account | DeviceAccountDto | DeviceAccountDto |
| dataPoints | Data Points | string | |
| createdBy | Creator | string | |
| createdTime | Created Time | string | |
| updatedBy | Updater | string | |
| updatedTime | Report Time | string | |
| taskStatus | Task Status | integer | |
| taskName | Task Name | string | |
| status | Status | integer | |
| retRestAPIUrl | Ret Rest API URL | string | |
| retDetectStreamUrl | Ret Detect Stream URL | string | |
| beuStatus | BEU Status | integer | |
| beuBusinessLocation | BEU Business Location | array | |
| publishStatus | Publish Status | integer | |
| publishTime | Publish Time | string | |
| operatingPointId | Operating Point ID | integer | |
| mspId | Scene ID | integer | |
| groupId | Group ID | integer | |
| groupName | Group Name | string | |
| execStep | Execution Step | integer | |
| indexOrder | Index Order | integer | |
| operatingPoint | Operating Point DTO | OperatingPointDto | OperatingPointDto |
| level | Level | string | |
| gait | Gait | integer | |
| manner | Manner | integer | |
| contentModel | Content Model | string | |
| eventTriggeredCondition | Event Trigger Condition | string | |
| eventTriggeredSupport | Event Trigger Support | integer | |
| videoDuration | Video Duration | integer | |
| obstacle | Obstacle Avoidance | integer | |
| eventTriggeredPoint | Event Trigger Point | string | |
| navMode | Nav Mode | integer | |
| pointSource | Point Source | integer | |
| navSpeed | Nav Speed | integer | |
| height | Height | integer | |
| recognitionType | Recognition Type | integer | |
| withFigure | With Figure | integer | |
| eventStopPoint | Event Stop Point | string | |
| eventStopCondition | Event Stop Condition | string | |
| indexInGroup | Index in Group | integer | |
| roiPicUploadedTime | ROI Pic Uploaded Time | string | |
| dockId | Dock ID | string | |
| robotType | Robot Type | string | |
| robotName | Robot Name | string | |
| benchmarkImage | Benchmark Image | string | |
| signalValue | Signal Value | string | |
| used | Is used | boolean | |
| levelAndPhaseName | Level 5 + Phase Name | string | |
| pointAndPhaseName | Point + Phase Name | string | |
| deviceType | Main device type | string | |
| model | Model | string | |
| algId | Algorithm model ID | long | |
| algTestResultUrl | Algorithm test result image | string | |
| algTestStatus | Algorithm test status | integer | |
| baseImageValue | Base image value | string | |
| timestamp | Timestamp | datetime | datetime |