|
@@ -37,13 +37,14 @@ public class SceneController {
|
|
|
return sceneService.search(param);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ @WebControllerLog(description = "场景管理-场景编辑", addDb=true)
|
|
|
@ApiOperation("场景编辑")
|
|
|
@PostMapping("edit")
|
|
|
public Result edit(@Valid @RequestBody SceneDataDto param) {
|
|
|
return sceneService.edit(param);
|
|
|
}
|
|
|
|
|
|
+ @WebControllerLog(description = "场景管理-场景编辑", addDb=true)
|
|
|
@ApiOperation("漫游可行")
|
|
|
@PostMapping("roamViable")
|
|
|
public Result roamViable(@RequestBody RoamViableDto param) throws Exception {
|
|
@@ -54,7 +55,7 @@ public class SceneController {
|
|
|
/**
|
|
|
* 场景,真删除
|
|
|
*/
|
|
|
- @WebControllerLog(description = "大场景-删除")
|
|
|
+ @WebControllerLog(description = "场景管理-删除", addDb=true)
|
|
|
@ApiOperation("场景删除")
|
|
|
@GetMapping("removes/{ids}")
|
|
|
public Result removes(@PathVariable String ids) {
|