air_condition
  1. report
air_condition
  • auth
    • login
      GET
    • logout
      GET
  • guest
    • get_panel_status
      GET
    • remote_control
      POST
  • admin
    • admin_control
      POST
    • get_all_device_status
      GET
    • get_device_status
      GET
  • check
    • check_in
      POST
    • check_out
      POST
  • bill
    • bill_cost
      GET
    • bill_detail
      GET
  • report
    • get_daily_report
      POST
    • get_weekly_report
      POST
  1. report

get_daily_report

开发中
POST
/get_daily_report
get_daily_report

请求参数

Body 参数application/json
date
string 
必需
示例
{
    "date": "2023-08-01"
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/get_daily_report' \
--header 'Content-Type: application/json' \
--data-raw '{
    "date": "2023-08-01"
}'

返回响应

🟢200成功
application/json
Body
room_list
array [object {8}] 
必需
room_id
integer 
必需
turn_times
integer 
必需
sched_times
integer 
必需
bill_times
integer 
必需
tweat_tem_times
integer 
必需
tweat_speed_times
integer 
必需
working_time
number 
必需
this is the running time, not times !!!
daily_cost
number 
必需
示例
{
    "room_list": [
        {
            "room_id": 0,
            "turn_times": 0,
            "sched_times": 0,
            "bill_times": 0,
            "tweat_tem_times": 0,
            "tweat_speed_times": 0,
            "working_time": 0,
            "daily_cost": 0
        }
    ]
}
修改于 2023-11-29 12:37:52
上一页
bill_detail
下一页
get_weekly_report
Built with