package com.zy.core.thread.impl.v5;
|
|
import com.zy.core.model.command.StationCommand;
|
import lombok.Data;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
@Data
|
public class StationV5SegmentExecutionPlan {
|
|
private List<Integer> fullPathStationIds = new ArrayList<>();
|
|
private List<StationCommand> segmentCommands = new ArrayList<>();
|
|
public int getTotalSegmentCount() {
|
return segmentCommands == null ? 0 : segmentCommands.size();
|
}
|
}
|