-
Notifications
You must be signed in to change notification settings - Fork 1
전력분석
Bohyeon Kim edited this page Mar 23, 2022
·
3 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | safety/PowerAnalysis/:IotNum/:Year | 저번달 예측과 저번달 사용량 비교 |
Content-Type: application/json
{
"status": 200,
"success": false,
"message": "해당하는 IoTNum의 데이터가 존재하지 않습니다."
}
{
"status": 200,
"success": true,
"message": "예측값과 실제 사용값 비교값 전달 성공",
"data": [
[
{
"PredictData": 150.3,
"Month": 2
},
{
"PredictData": 205.2,
"Month": 3
}
],
[
{
"IotData": "1000",
"Month": 1
},
{
"IotData": "2000",
"Month": 2
}
]
]
}