|
@@ -1,6 +1,5 @@
|
|
|
package com.fdkankan.contro.controller;
|
|
|
|
|
|
-import com.fdkankan.contro.entity.ScenePlus;
|
|
|
import com.fdkankan.contro.annotation.SignVerification;
|
|
|
import com.fdkankan.contro.entity.ScenePlus;
|
|
|
import com.fdkankan.contro.service.IInnerService;
|
|
@@ -8,16 +7,10 @@ import com.fdkankan.contro.service.IScenePlusService;
|
|
|
import com.fdkankan.web.response.ResultData;
|
|
|
import lombok.extern.log4j.Log4j2;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
/**
|
|
|
* 场景文件上传模块
|
|
|
*/
|
|
@@ -49,12 +42,6 @@ public class InnerController {
|
|
|
innerService.updateSceneFail(num);
|
|
|
return ResultData.ok();
|
|
|
}
|
|
|
- @GetMapping("listNewCameraScene")
|
|
|
- public ResultData listNewCameraScene(@RequestParam("title") String title){
|
|
|
- List<ScenePlus> ScenePlusList = innerService.listNewCameraScene(title);
|
|
|
- return ResultData.ok(ScenePlusList);
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -71,8 +58,6 @@ public class InnerController {
|
|
|
|
|
|
/**
|
|
|
* 只是一个demo接口
|
|
|
- * @param title
|
|
|
- * @param type
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("submit")
|