简要描述:
- 导检记录
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 | 说明 |
---|---|---|---|---|
3.1.0 | 朱小乾 | 2022-06-23 | - | |
3.8.4 | 朱小乾 | 2024-07-26 | 增加策略名称 |
请求URL:
- /api/mobileGuide/recordLogger/GetGuideLogs
请求方式:
- Get
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
id | 是 | int | 主键Id |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"logId": 1,
"macAddress": null,
"macName": null,
"queueName": null,
"userName": "管理员",
"operaType": 33,
"operaTypeDes": "回检",
"createTime": "2022-06-22T09:38:47.763"
}
]
}
错误时返回:
{
"code": 12,
"message": " ",
"data": null
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
logId | int | 日志Id |
macAddress | string | 设备地址 |
macName | string | 设备名称 |
queueName | string | 队列名称 |
userName | string | 用户名 |
operaType | int | 操作码 |
operaTypeDes | string | 操作 |
createTime | datetime | 创建时间 |
priorityName | string | 策略名称 |
备注:
-
文档更新时间: 2023-08-15 16:39