查询指定时间区间内指定机床每天焊道数相关的统计数据
① 按照天为维度,展示每日的焊道数
{
"cardId": "123456789100",
"startDate": 20230201,
"endDate": 20230207
}curl --location --request POST 'https://mcs-gateway.fscut.com/api/statistics/daily/weld_pass_count' \
--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,
"weldPassCount": 3
},
{
"statDate": 20230202,
"weldPassCount": 31
},
{
"statDate": 20230203,
"weldPassCount": 4
},
{
"statDate": 20230204,
"weldPassCount": 0
},
{
"statDate": 20230205,
"weldPassCount": 1
},
{
"statDate": 20230206,
"weldPassCount": 12
},
{
"statDate": 20230207,
"weldPassCount": 3
}
]
}
}