| | |
| | | package com.ruoyi.device.radar.controller; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | |
| | | return toAjax(ardEquipRadarService.deleteArdEquipRadarByIds(ids)); |
| | | } |
| | | |
| | | /** |
| | | * 角度引导信息反馈 |
| | | */ |
| | | @ApiOperation(value = "角度引导信息反馈") |
| | | @PostMapping("/guideInfo") |
| | | @PostMapping("/guideInfoBack") |
| | | public AjaxResult guideInfoBack(@RequestBody GuideInfo guideInfo) |
| | | { |
| | | return radarClient.guideInfoBack(guideInfo); |
| | | } |
| | | |
| | | /** |
| | | * 获取部门和雷达 |
| | | */ |
| | | @GetMapping("/getDeptAndRadar") |
| | | @ApiOperation("获取部门和雷达") |
| | | public AjaxResult getDeptAndCamera() { |
| | | Map deptAndCamera = ardEquipRadarService.getChildDeptAndRadar(true); |
| | | return AjaxResult.success(deptAndCamera); |
| | | } |
| | | } |