|
|
@@ -4,7 +4,9 @@ package com.fdkankan.manage_jp.controller;
|
|
|
import com.fdkankan.manage_jp.common.Result;
|
|
|
import com.fdkankan.manage_jp.entity.Project;
|
|
|
import com.fdkankan.manage_jp.service.IProjectService;
|
|
|
+import com.fdkankan.manage_jp.service.ISceneProService;
|
|
|
import com.fdkankan.manage_jp.vo.request.ProjectParam;
|
|
|
+import com.fdkankan.manage_jp.vo.request.SceneParam;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
@@ -26,7 +28,8 @@ public class ProjectController extends BaseController{
|
|
|
|
|
|
@Autowired
|
|
|
IProjectService projectService;
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ ISceneProService sceneProService;
|
|
|
|
|
|
@PostMapping("/list")
|
|
|
public Result list(@RequestBody ProjectParam param){
|
|
|
@@ -50,5 +53,9 @@ public class ProjectController extends BaseController{
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @PostMapping("addScene")
|
|
|
+ public Result addScene(){
|
|
|
+ return Result.success();
|
|
|
+ }
|
|
|
}
|
|
|
|