doum
2025-12-11 4a1546ec6f2d466c00791f2432f61eeeca97b5a1
server/visits/dmvisit_admin/src/main/java/com/doumee/cloud/admin/HkSyncCloudController.java
@@ -320,14 +320,15 @@
    @PostMapping("/regionList")
    public ApiResponse<List<PageRegionInfoResponse> > getRegionList(HttpServletResponse response, @RequestHeader(Constants.HEADER_USER_TOKEN) String token ){
        CarmeraListVO param  =new CarmeraListVO();
        param.setWithCameras(2);
        param.setWithCameras(1);
        List<PageRegionInfoResponse>  result = new ArrayList<>();
        try {
            result = boardService.getRegionTree( param);
        }catch (Exception e){
        }
        /*if(result.size()==0){
        if(result.size()==0){
            //------TODO---------测试模拟数据----start-----
            for (int i = 0; i < 5; i++) {
                PageRegionInfoResponse t = new PageRegionInfoResponse();
@@ -362,7 +363,7 @@
                result.add(t);
            }
            //------TODO---------测试模拟数据----end-----
        }*/
        }
        return ApiResponse.success(result);
    }