|
|
|
@ -68,7 +68,7 @@ public class OverviewServiceImpl implements OverviewService { |
|
|
|
public SimpleDataResponse<List<OverviewVO>> getOverviewInfo(Long userId, Long companyId, Integer languageType, Integer utcOffset) { |
|
|
|
Map<String, Object> buildingMap = new HashMap<>(); |
|
|
|
buildingMap.put("companyId", companyId); |
|
|
|
buildingMap.put("bindBuildingIdList", commonOpt.getBindBuildingIdList(userId)); |
|
|
|
buildingMap.put("bindBuildingIdList", commonOpt.getBindBuildingIdList(userId, companyId)); |
|
|
|
|
|
|
|
List<OverviewVO> buildingInfoList = overviewInfoMapperExt.getBuildingInfo(buildingMap); |
|
|
|
|
|
|
|
@ -276,7 +276,7 @@ public class OverviewServiceImpl implements OverviewService { |
|
|
|
public SimpleDataResponse<List<TreeMenusDTO>> getOverallBoundLevel(Long companyId, Long userId, Integer languageType) { |
|
|
|
Map<String, Object> buildingMap = new HashMap<>(); |
|
|
|
buildingMap.put("companyId", companyId); |
|
|
|
buildingMap.put("bindBuildingIdList", commonOpt.getBindBuildingIdList(userId)); |
|
|
|
buildingMap.put("bindBuildingIdList", commonOpt.getBindBuildingIdList(userId, companyId)); |
|
|
|
List<BuildingPathDTO> selectBuildingFullPath = levelMapperExt.selectBuildingFullPath(buildingMap); |
|
|
|
|
|
|
|
// 构建节点
|
|
|
|
|