根据mac地址查询设备详情

This commit is contained in:
2025-08-18 11:04:23 +08:00
parent b51e88052f
commit 9a6bf05c4b
4 changed files with 24 additions and 9 deletions

View File

@ -87,7 +87,7 @@ public class AppDeviceController extends BaseController {
* 根据mac查询设备信息
*/
@GetMapping("/getDeviceInfoByDeviceMac")
public R<Device> getDeviceInfo(String deviceMac) {
public R<AppDeviceVo> getDeviceInfo(String deviceMac) {
return R.ok(appDeviceService.getDeviceInfo(deviceMac));
}
}