添加机场详情查看接口

This commit is contained in:
孙小云 2026-01-21 17:14:29 +08:00
parent 123de67f76
commit e097e597f5
2 changed files with 8 additions and 4 deletions

View File

@ -33,7 +33,7 @@ public class AircraftController extends BaseController
* @param aircraftId 无人机ID
* @return 无人机详情
*/
@InnerAuth
// @InnerAuth
@GetMapping("/detail/{aircraftId}")
public R<AircraftDetailVO> getAircraftDetail(@PathVariable("aircraftId") Long aircraftId)
{

View File

@ -10,6 +10,7 @@ import com.ruoyi.device.service.api.IBufferDeviceService;
import com.ruoyi.device.service.dto.DockDetailDTO;
import com.ruoyi.device.service.dto.DockDTO;
import com.ruoyi.device.controller.convert.DockVOConvert;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
@ -38,7 +39,7 @@ public class DockController extends BaseController
* @param dockId 机场ID
* @return 机场列表
*/
@InnerAuth
//@InnerAuth
@GetMapping("/search")
public R<List<DockVO>> searchDocks(@RequestParam(required = false) String dockStatus, @RequestParam(required = false) Long dockId)
{
@ -53,11 +54,14 @@ public class DockController extends BaseController
* @param dockId 机场ID
* @return 机场详情
*/
@InnerAuth
//@InnerAuth
@GetMapping("/detail/{dockId}")
public R<DockDetailVO> getDockDetail(@PathVariable("dockId") Long dockId)
{
return R.ok(null);
DockDetailDTO dockDetailDTO = bufferDeviceService.getDockDetailById(dockId);
DockDetailVO result = new DockDetailVO();
BeanUtils.copyProperties(dockDetailDTO, result);
return R.ok(result);
}
}