refactor(controller): 移除未使用的导入以优化代码结构

- 移除了 EdgeAgvController 中未使用的 ArrayList 和 List 导入
- 移除了 EdgeArmController 中未使用的 Common 导入
- 移除了 EdgeArmOperateService 中未使用的 ArmCommand 导入
This commit is contained in:
lixiaolong 2026-07-01 16:41:52 +08:00
parent fb830f77ea
commit 46fb4fecde
3 changed files with 0 additions and 5 deletions

View File

@ -14,9 +14,6 @@ import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.ArrayList;
import java.util.List;
/**
* 边缘系统AGV控制器
*

View File

@ -1,7 +1,6 @@
package com.cmvr.web.controller.api;
import cmvr.api.ArmCommand;
import cmvr.api.Common;
import com.cmvr.common.core.domain.AjaxResult;
import com.cmvr.edge.client.model.EdgeCommonVO;
import com.cmvr.edge.client.model.arm.*;

View File

@ -1,6 +1,5 @@
package com.cmvr.test.flow.runtime.operator.edge;
import cmvr.api.ArmCommand;
import com.alibaba.fastjson2.JSONObject;
import com.cmvr.common.exception.GlobalException;
import com.cmvr.edge.client.model.EdgeCommonVO;