|
@@ -12,6 +12,8 @@ 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.ICameraService;
|
|
|
+import com.fdkankan.manage.service.IScenePlusService;
|
|
|
import com.fdkankan.manage.service.ISceneProService;
|
|
|
import com.fdkankan.manage.util.Dateutils;
|
|
|
import com.fdkankan.manage.util.ExcelUtil;
|
|
@@ -35,6 +37,8 @@ public class TestController {
|
|
|
ISceneProService sceneProService;
|
|
|
@Autowired
|
|
|
FYunFileServiceInterface fYunFileServiceInterface;
|
|
|
+ @Autowired
|
|
|
+ ICameraService cameraService;
|
|
|
|
|
|
@RequestMapping("/test")
|
|
|
public ResultData test(@RequestParam(required = false) String oldSnCode,
|
|
@@ -44,6 +48,12 @@ public class TestController {
|
|
|
return ResultData.ok();
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping("/testCameraSpace")
|
|
|
+ public ResultData test(){
|
|
|
+ cameraService.initAllCameraSpace();
|
|
|
+ return ResultData.ok();
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 导入excel
|