package com.zy.common.model; import com.zy.core.model.command.NyShuttleHttpCommand; import lombok.Data; import java.util.List; @Data //结果集 public class ShuttleOperaResult { //命令集合 private List commands; //行走路径集合 private List nodes; public ShuttleOperaResult(List commands, List nodes) { this.commands = commands; this.nodes = nodes; } }