查询指定时间区间内指定机床每天开气时长相关的统计数据
① 按照天为维度,展示每日的开气时长
{
"cardId": "123456789100",
"startDate": 20230201,
"endDate": 20230207
}
curl --location --request POST 'https://mcs-gateway.fscut.com/api/statistics/daily/gas_on' \
--header 'zoneId: America/Chicago' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardId": "123456789100",
"startDate": 20230201,
"endDate": 20230207
}'
{
"status": 0,
"msg": "OK",
"data": {
"list": [
{
"statDate": 20230201,
"gasOn": 13417
},
{
"statDate": 20230202,
"gasOn": 9429
},
{
"statDate": 20230203,
"gasOn": 13154
},
{
"statDate": 20230204,
"gasOn": 13694
},
{
"statDate": 20230205,
"gasOn": 21155
},
{
"statDate": 20230206,
"gasOn": 24400
},
{
"statDate": 20230207,
"gasOn": 20306
}
]
}
}