src/main/java/com/zy/common/model/ShuttleOperaResult.java
File was renamed from src/main/java/com/zy/common/model/NyShuttleOperaResult.java @@ -7,13 +7,13 @@ @Data //结果集 public class NyShuttleOperaResult { public class ShuttleOperaResult { //命令集合 private List<NyShuttleHttpCommand> commands; //行走路径集合 private List<NavigateNode> nodes; public NyShuttleOperaResult(List<NyShuttleHttpCommand> commands, List<NavigateNode> nodes) { public ShuttleOperaResult(List<NyShuttleHttpCommand> commands, List<NavigateNode> nodes) { this.commands = commands; this.nodes = nodes; }