摄像头-上下左右控制接口返回类型调整

This commit is contained in:
1378012178@qq.com 2025-09-01 10:32:03 +08:00
parent 3c718085e5
commit 77b6cad4ed
1 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ public class CameraInfoController extends JeecgController<CameraInfo, ICameraInf
IPage<CameraInfo> pageList = service.findNuPage(page, CameraInfo); IPage<CameraInfo> pageList = service.findNuPage(page, CameraInfo);
return Result.OK(pageList); return Result.OK(pageList);
} }
/** /**
* 编辑 * 编辑
* *
@ -560,7 +560,7 @@ public class CameraInfoController extends JeecgController<CameraInfo, ICameraInf
*/ */
@GetMapping(value = "/motionCtrl") @GetMapping(value = "/motionCtrl")
public Result motionCtrl(CameraInfo cameraInfo) throws Exception{ public Result motionCtrl(CameraInfo cameraInfo) throws Exception{
return service.motionCtrl(cameraInfo); return Result.ok(service.motionCtrl(cameraInfo));
} }