|
|
@@ -40,9 +40,16 @@ public interface DeviceApi {
|
|
|
@GetMapping(prefix + "/deviceDetail")
|
|
|
DeviceDetailVo deviceDetail(@RequestParam("id") Long id);
|
|
|
|
|
|
+ /**
|
|
|
+ * @param id 设备id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping(prefix + "/queryDevice")
|
|
|
+ DevicesVo queryDevice(@RequestParam("id") Long id);
|
|
|
|
|
|
/**
|
|
|
* 查询设备
|
|
|
+ *
|
|
|
* @author Aick Spt
|
|
|
* @date 2024-05-06 11:44
|
|
|
*/
|
|
|
@@ -50,6 +57,4 @@ public interface DeviceApi {
|
|
|
List<DevicesVo> devicesQuery(@RequestBody DevicesNameVo devicesNameVo);
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
}
|