Appearance
功能概述
系统管理后台首页接口
接口访问
接口地址
system/manage/overviewData
请求方式 Method
GET
Header - Authorization Type : Bearer Token
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| token | string | 32 | true | 用户身份标识令牌 | - |
返回值
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| propertyData | array | true | 物业数据 |
| propertyData.propertyTotalCount | int | true | 物业数量 |
| propertyData.houseTotalCount | int | true | 房产数量 |
| propertyData.houseRentTotalCount | int | true | 房产出租数量 |
| propertyData.houseVacantCount | int | true | 房产闲置数量 |
| turnoverData | array | true | 营收数据 |
| turnoverData.turnoverSum | int | true | 总营收数据 |
| turnoverData.todayTurnoverSum | int | true | 今日营收数据 |
| turnoverData.monthTurnoverSum | int | true | 月度营收数据 |
| turnoverData.quarterTurnoverSum | int | true | 季度营收数据 |
| turnoverData.yearTurnoverSum | int | true | 年度营收数据 |
| hardwareData | array | true | 硬件数据 |
| hardwareData.inventoryCount | int | true | 设备库存总数量 |
| hardwareData.sellCount | int | true | 设备出售数量 |
| hardwareData.boundCount | int | true | 已绑定设备数量 |
| hardwareData.unboundCount | int | true | 未绑定设备数量 |
| hardwareData.electricityMeterCount | int | true | 电表 |
| hardwareData.waterMeterCount | int | true | 水表 |
| hardwareData.doorLockCount | int | true | 智能门锁 |
返回示例
{
"response": {
"propertyData": {
"propertyTotalCount": 10,
"houseTotalCount": "378",
"houseRentTotalCount": 0,
"houseVacantCount": 378
},
"turnoverData": {
"turnoverSum": 0,
"todayTurnoverSum": 0,
"monthTurnoverSum": 0,
"quarterTurnoverSum": 0,
"yearTurnoverSum": 0
},
"hardwareData": {
"inventoryCount": 0,
"sellCount": 0,
"boundCount": 0,
"unboundCount": 0,
"electricityMeterCount": 0,
"waterMeterCount": 0,
"doorLockCount": 0
}
},
"requestId": "9e66e74e-d097-4793-b162-841262b04d1e"
}