diff --git a/fys-admin/src/main/java/com/fuyuanshen/web/controller/device/WEBDeviceController.java b/fys-admin/src/main/java/com/fuyuanshen/web/controller/device/WEBDeviceController.java index 700ff0d9..86ec7ed6 100644 --- a/fys-admin/src/main/java/com/fuyuanshen/web/controller/device/WEBDeviceController.java +++ b/fys-admin/src/main/java/com/fuyuanshen/web/controller/device/WEBDeviceController.java @@ -61,7 +61,7 @@ public class WEBDeviceController extends BaseController { * @return */ @Operation(summary = "设备详情") - @GetMapping(value = "/detail/{id}") + @GetMapping(value = "/pc/detail/{id}") public R getDevice(@PathVariable Long id) { WebDeviceVo device = deviceService.getDevice(id); return R.ok(device);