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

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

@ -560,7 +560,7 @@ public class CameraInfoController extends JeecgController<CameraInfo, ICameraInf
*/
@GetMapping(value = "/motionCtrl")
public Result motionCtrl(CameraInfo cameraInfo) throws Exception{
return service.motionCtrl(cameraInfo);
return Result.ok(service.motionCtrl(cameraInfo));
}