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