#
Junjie
5 小时以前 e9b531edd2917b01a80dfa14e917ec21ddad8882
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();
    }
}