文档
测试

根据巡检任务ID查询巡检任务信息

GET
http://localhost:30010/api/checkManage/CheckTask/detail/{id}

请求头

参数名
类型
描述
必填
Authorization
string
示例:bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJsb2dpblR5cGUiOiJsb2dpbiIsImxvZ2luSWQiOiIzNDkwNTc0MDcyMDk1NDEiLCJyblN0ciI6InFxU0d2cVpNRUZrb2ZQRVFSRzJ5cmhBM1lpYnNlSVRlIiwidXNlcl9pZCI6IjM0OTA1NzQwNzIwOTU0MSIsInVzZXJfbmFtZSI6ImFkbWluIiwic2luZ2xlTG9naW4iOjIsImV4cCI6MTY5MzQ5OTM0Njk5MywidG9rZW4iOiJsb2dpbl90b2tlbl80NjY4NjM1NTMyMzY3MTExNzMifQ.kGw9jajIz86BRV3gaYSHv8kP1KizhW24jyRYGCBJWsE
必填

请求参数

参数名
类型
描述
必填
id
string
巡检任务ID
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
msg
string
示例:Success
必填
data
object
响应数据
必填
id
string
示例:1696778280681385986
必填
creatoruserid
string
示例:管理员
必填
creatortime
string
示例:2023-08-30 14:54:01
必填
lastmodifyuserid
string
示例:
必填
lastmodifytime
date
示例:null
必填
plancode
string
示例:CP20230830000006
必填
planname
string
示例:巡检计划一
必填
needuser
int
示例:3
必填
needtime
int
示例:50
必填
realtime
date
示例:null
必填
errormax
int
示例:5
必填
errormin
int
示例:5
必填
checkteam
string
示例:一期
必填
code
string
示例:CT20230830000003
必填
status
string
示例:未开始
必填
itemtotals
int
示例:2
必填
itemfinisheds
int
示例:0
必填
itemanomalys
int
示例:0
必填
confirmresult
int
示例:null
必填
confirmuserid
string
示例:null
必填
confirmtime
date
示例:null
必填
confirmmsg
string
示例:null
必填
files
string
示例:[]
必填
checktaskitemList
array
数据列表
必填
id
string
示例:1696778309626277890
必填
assetstype
string
示例:null
必填
assetscode
string
示例:null
必填
name
string
示例:排风扇运行状态
必填
standard
string
示例:正常运行
必填
way
string
示例:判断类
必填
max
string
示例:50
必填
min
string
示例:20
必填
value
string
示例:null
必填
unit
string
示例:kVar
必填
nfccode
string
示例:null
必填
nfcname
string
示例:null
必填
nfcdesc
string
示例:null
必填
nfcscantime
date
示例:null
必填
result
int
示例:null
必填
anomalylevel
string
示例:null
必填
anomalyfinished
int
示例:null
必填
anomalydesc
string
示例:null
必填
images
string
示例:
必填
creatortime
date
示例:null
必填
creatoruserid
string
示例:null
必填
lastmodifytime
date
示例:null
必填
lastmodifyuserid
string
示例:null
必填
sortcode
int
示例:1
必填
taskstarttime
string
示例:1693378320000
必填
taskendtime
string
示例:1693403580000
必填
endearly
string
示例:0
必填
endearlydesc
string
示例:null
必填

说明 / 示例

````java { "code": 200, "msg": "Success", "data": { "id": "1696778280681385986", "creatoruserid": "管理员", "creatortime": "2023-08-30 14:54:01", "lastmodifyuserid": "", "lastmodifytime": null, "plancode": "CP20230830000006", "planname": "巡检计划一", "needuser": 3, "needtime": 50, "realtime": null, "errormax": 5, "errormin": 5, "checkteam": "一期", "code": "CT20230830000003", "status": "未开始", "itemtotals": 2, "itemfinisheds": 0, "itemanomalys": 0, "confirmresult": null, "confirmuserid": null, "confirmtime": null, "confirmmsg": null, "files": "[]", "checktaskitemList": [ { "id": "1696778309626277890", "assetstype": null, "assetscode": null, "name": "排风扇运行状态", "standard": "正常运行", "way": "判断类", "max": "50", "min": "20", "value": null, "unit": "kVar", "nfccode": null, "nfcname": null, "nfcdesc": null, "nfcscantime": null, "result": null, "anomalylevel": null, "anomalyfinished": null, "anomalydesc": null, "images": "", "creatortime": null, "creatoruserid": null, "lastmodifytime": null, "lastmodifyuserid": null, "sortcode": "1" }, { "id": "1696778309626277891", "assetstype": null, "assetscode": null, "name": "配电室", "standard": "运行是否正常", "way": "判断类", "max": "20", "min": "5", "value": null, "unit": "kVAH", "nfccode": null, "nfcname": null, "nfcdesc": null, "nfcscantime": null, "result": null, "anomalylevel": null, "anomalyfinished": null, "anomalydesc": null, "images": "", "creatortime": null, "creatoruserid": null, "lastmodifytime": null, "lastmodifyuserid": null, "sortcode": "2" } ], "taskstarttime": "1693378320000", "taskendtime": "1693403580000", "endearly": "0", "endearlydesc": null } } ````