查询指定时间区间内指定机床每天空移长度相关的统计数据
① 按照天为维度,展示每日的空移长度
{
"cardId": "123456789100",
"startDate": 20230201,
"endDate": 20230207
}
curl --location --request POST 'https://mcs-gateway.fscut.com/api/statistics/daily/move_length' \
--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,
"cutLength": 309393.83999999997
},
{
"statDate": 20230202,
"cutLength": 133819.7
},
{
"statDate": 20230203,
"cutLength": 226217.71999999997
},
{
"statDate": 20230204,
"cutLength": 189433.21
},
{
"statDate": 20230205,
"cutLength": 398197.6000000001
},
{
"statDate": 20230206,
"cutLength": 437550.84
},
{
"statDate": 20230207,
"cutLength": 273566.48
}
]
}
}