|
@@ -43,6 +43,8 @@ public class GeomInfoController {
|
43
|
43
|
return geomInfoService.findAllByZoneId(zoneId);
|
44
|
44
|
}
|
45
|
45
|
|
|
46
|
+
|
|
47
|
+
|
46
|
48
|
@Operation(
|
47
|
49
|
summary = "5.1.2.33 下载场景信息接口V2",
|
48
|
50
|
description = "5.1.2.33 下载场景信息接口V2",
|
|
@@ -112,4 +114,17 @@ public class GeomInfoController {
|
112
|
114
|
public MessageBean<String> uploadVideo(@RequestParam MultipartFile file) {
|
113
|
115
|
return baseService.uploadVideo(file, "zone/video/");
|
114
|
116
|
}
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+ @Operation(
|
|
120
|
+ summary = "获取导航信息",
|
|
121
|
+ description = "获取导航信息",
|
|
122
|
+ parameters = {
|
|
123
|
+ @Parameter(name = "zoneId", required = true, description = "作品/区域ID")
|
|
124
|
+ }
|
|
125
|
+ )
|
|
126
|
+ @GetMapping("/getNavigationInfo")
|
|
127
|
+ public List<GeomInfo> getNavigationInfo(@RequestParam Integer zoneId) {
|
|
128
|
+ return geomInfoService.getNavigationInfo(zoneId);
|
|
129
|
+ }
|
115
|
130
|
}
|