|
@@ -22,6 +22,7 @@ import com.fdkankan.common.util.SecurityUtil;
|
|
|
import com.fdkankan.manage.common.FilePath;
|
|
|
import com.fdkankan.manage.exception.BusinessException;
|
|
|
import com.fdkankan.manage.httpClient.service.LaserService;
|
|
|
+import com.fdkankan.manage.service.ICameraDetailService;
|
|
|
import com.fdkankan.manage.service.ICameraService;
|
|
|
import com.fdkankan.manage.service.IScenePlusService;
|
|
|
import com.fdkankan.manage.service.ISceneProService;
|
|
@@ -53,6 +54,8 @@ public class TestController {
|
|
|
@Autowired
|
|
|
ICameraService cameraService;
|
|
|
@Autowired
|
|
|
+ ICameraDetailService cameraDetailService;
|
|
|
+ @Autowired
|
|
|
IndexService indexService;
|
|
|
@Autowired
|
|
|
QueryDataService queryDataService;
|
|
@@ -92,6 +95,12 @@ public class TestController {
|
|
|
return ResultData.ok();
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping("/testCameraSpaceId")
|
|
|
+ public ResultData testCameraSpaceId(@RequestParam(required = false) Long cameraId){
|
|
|
+ cameraDetailService.initSpace(cameraId);
|
|
|
+ return ResultData.ok();
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 导入excel
|