| | |
| | | } |
| | | |
| | | /** |
| | | * 车辆信息采集正确率 |
| | | * 车辆数据完整 |
| | | */ |
| | | private CheckIndexCar createOrUpdateCheckIndexCar(String key, AreaStats stats, List<CheckIndexCar> checkIndexCarList) { |
| | | CheckIndexCar checkIndexCar = getCheckIndex(key, checkIndexCarList, CheckIndexCar.class); |
| | |
| | | return null; |
| | | } |
| | | //调用计算方法 |
| | | Map<String, Object> param = new HashMap<>(); |
| | | param.put("totalSites", stats.totalSites); |
| | | param.put("importantTotalSites", stats.importantTotalSites); |
| | | param.put("integritySites", stats.integritySites); |
| | | param.put("importantIntegritySites", stats.importantIntegritySites); |
| | | BigDecimal dataIntegrity = dataIntegrity(param); |
| | | checkIndexCar.setVehicleCaptureIntegrity(dataIntegrity); |
| | | Map<String, Object> param = new HashMap<>(); |
| | | param.put("totalSites", stats.totalSites); |
| | | param.put("importantTotalSites", stats.importantTotalSites); |
| | | param.put("integritySites", stats.integritySites); |
| | | param.put("importantIntegritySites", stats.importantIntegritySites); |
| | | BigDecimal dataIntegrity = dataIntegrity(param); |
| | | checkIndexCar.setVehicleCaptureIntegrity(dataIntegrity); |
| | | return checkIndexCar; |
| | | } |
| | | |