#
Junjie
2025-01-06 0ac76f7d8101903e1d050116f7d3835ce1303dfa
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;
    }