let idSet = new Set();
        let starTimeMap = new Map();
        let endTimeMap = new Map();
        for(let i=0;i<resultList.length;i++){
            let locationInfo = resultList[i];
            let cardId = locationInfo.cardId;//
            let reportTime = locationInfo.reportTime;//上报时间

            idSet.add(cardId);
            if(!starTimeMap.has(cardId)){
                starTimeMap.set(cardId, reportTime);
            }
            endTimeMap.set(cardId, reportTime);
        }