简要描述:
- 查询终端
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
3.3.0 | 朱小乾 | 2022-11-11 | - |
请求URL:
- /api/media/mediaTerminal/searchMediaTerminal
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
isOnline | 否 | int | 是否在线 -1,全部, 0:离线 1:在线 |
areaId | 否 | int | 检区ID |
sceneId | 否 | int | 场景ID |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [ {
"id": 6,
"name": "诊位屏(采血)",
"areaId": 13,
"areaName": "1楼",
"orientation": null,
"currentContent": null,
"endTime": null,
"defaultContent": null,
"isOnline": false,
"durationType": 0,
"duration": 0,
"sceneId": 0,
"sceneName": null,
"templateId": 0
}]
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
name | string | 名称 |
areaId | int | 检区ID |
areaName | string | 检区名称 |
orientation | string | 屏幕方向 |
currentContent | string | 当前内容 |
endTime | string | 结束时间 |
defaultContent | string | 默认内容 |
isOnline | bool | 在线状态 |
durationType | int | 播放类型 |
duration | int | 播放时长 |
sceneId | int | 场景ID |
sceneName | string | 场景名称 |
templateId | int | 模板ID |
备注:
-
文档更新时间: 2022-11-11 14:29