From 1072e3e553d485d569d319e4827c4e215e19e510 Mon Sep 17 00:00:00 2001 From: stream Date: Thu, 16 Oct 2025 13:43:08 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=96=87=E6=A1=A3=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cmvr/web/controller/api/EdgeHumanoidRobotController.java | 2 +- .../java/com/cmvr/edge/client/model/humanoid/EdgeMoveJVO.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cmvr-iot-admin/src/main/java/com/cmvr/web/controller/api/EdgeHumanoidRobotController.java b/cmvr-iot-admin/src/main/java/com/cmvr/web/controller/api/EdgeHumanoidRobotController.java index 59c4b91..d8d449d 100644 --- a/cmvr-iot-admin/src/main/java/com/cmvr/web/controller/api/EdgeHumanoidRobotController.java +++ b/cmvr-iot-admin/src/main/java/com/cmvr/web/controller/api/EdgeHumanoidRobotController.java @@ -19,7 +19,7 @@ public class EdgeHumanoidRobotController { private final EdgeHumanoidRobotService edgeHumanoidRobotService; - @ApiOperation("设置面部表情") + @ApiOperation("moveJ") @PostMapping("/moveJ") public AjaxResult expression(@RequestBody EdgeMoveJVO moveJVO) { return AjaxResult.ok(edgeHumanoidRobotService.moveJ(moveJVO)); diff --git a/cmvr-iot-api/cmvr-iot-edge/cmvr-iot-grpc-client/src/main/java/com/cmvr/edge/client/model/humanoid/EdgeMoveJVO.java b/cmvr-iot-api/cmvr-iot-edge/cmvr-iot-grpc-client/src/main/java/com/cmvr/edge/client/model/humanoid/EdgeMoveJVO.java index b137194..a85b062 100644 --- a/cmvr-iot-api/cmvr-iot-edge/cmvr-iot-grpc-client/src/main/java/com/cmvr/edge/client/model/humanoid/EdgeMoveJVO.java +++ b/cmvr-iot-api/cmvr-iot-edge/cmvr-iot-grpc-client/src/main/java/com/cmvr/edge/client/model/humanoid/EdgeMoveJVO.java @@ -1,6 +1,5 @@ package com.cmvr.edge.client.model.humanoid; -import cmvr.api.HumanoidRobot; import com.cmvr.edge.client.model.EdgeCommonVO; import lombok.Data;