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 fullPathStationIds = new ArrayList<>(); private List segmentCommands = new ArrayList<>(); public int getTotalSegmentCount() { return segmentCommands == null ? 0 : segmentCommands.size(); } }