主题
获取所有枚举
获取所有枚举
接口地址:/api/getAllEnum
language
content-type:application/json
method:post传入参数
| 属性 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| code | string | 是 | iot管理平台中获取到的code值 |
请求示例
language
{
"code": ""
}返回值
| 属性 | 类型 | 说明 |
|---|---|---|
| code | int | 返回状态码 |
| msg | string | 返回消息 |
| data | object | 返回的数据 |
data内object数据
| 属性 | 类型 | 说明 |
|---|---|---|
| deviceTypeList | [] | 设备类型集合 |
| deviceTypeId | string | 设备类型id |
| deviceTypeName | string | 设备类型名称 |
| deviceResolutionLength | string | 设备分辨率-长 |
| deviceResolutionWidth | string | 设备分辨率-宽 |
| screenDensity | string | 屏幕密度 |
| appClassification | [] | 应用分类集合 |
| classificationName | string | 分类名 |
| id | int | 分类id |
| permissionList | [] | 屏幕密度 |
| id | int | 权限id |
| permissionName | string | 权限名称 |
响应示例
language
{
"code": 0,
"data": {
"deviceTypeList": [
{
"deviceResolutionLength": "",
"deviceResolutionWidth": "",
"deviceTypeId": 0,
"deviceTypeName": "",
"screenDensity": ""
}
],
"appClassification" :[
{
"classificationName": "",
"id": 0
}
],
"permissionList" :[
{
"permissionName": "",
"id": 0
}
]
},
"msg": ""
}