设备详情

This commit is contained in:
2025-08-25 13:42:24 +08:00
parent 9b476e98ba
commit 74cefe9cc3

View File

@ -61,7 +61,7 @@ public class WEBDeviceController extends BaseController {
* @return * @return
*/ */
@Operation(summary = "设备详情") @Operation(summary = "设备详情")
@GetMapping(value = "/detail/{id}") @GetMapping(value = "/pc/detail/{id}")
public R<WebDeviceVo> getDevice(@PathVariable Long id) { public R<WebDeviceVo> getDevice(@PathVariable Long id) {
WebDeviceVo device = deviceService.getDevice(id); WebDeviceVo device = deviceService.getDevice(id);
return R.ok(device); return R.ok(device);