forked from xxhjsb/wit-park-backend
Merge remote-tracking branch 'origin/main' into main
commit
3d88cfe508
|
@ -122,7 +122,7 @@ public class HazardousOperationServiceImpl implements IHazardousOperationService
|
||||||
statisticsVo.setCount(typeList.get(key).size());
|
statisticsVo.setCount(typeList.get(key).size());
|
||||||
operationTypeList.add(statisticsVo);
|
operationTypeList.add(statisticsVo);
|
||||||
}
|
}
|
||||||
map.put("operationTypeList", operationTypeList);
|
map.put("operationTypeList", JSONObject.toJSONString(operationTypeList));
|
||||||
|
|
||||||
// 进行中的危险作业
|
// 进行中的危险作业
|
||||||
List<HazardousOperation> hazardousOperations = list.stream()
|
List<HazardousOperation> hazardousOperations = list.stream()
|
||||||
|
|
|
@ -121,7 +121,7 @@ public class MajorHazardSourcesServiceImpl implements IMajorHazardSourcesService
|
||||||
statisticsVo.setCount(typeList.get(key).size());
|
statisticsVo.setCount(typeList.get(key).size());
|
||||||
dangerLevelList.add(statisticsVo);
|
dangerLevelList.add(statisticsVo);
|
||||||
}
|
}
|
||||||
map.put("dangerLevelList", dangerLevelList);
|
map.put("dangerLevelList", JSONObject.toJSONString(dangerLevelList));
|
||||||
|
|
||||||
// 获取生产单元数量
|
// 获取生产单元数量
|
||||||
int productionUnit = (int) list.stream()
|
int productionUnit = (int) list.stream()
|
||||||
|
|
Loading…
Reference in New Issue