#
Junjie
2 天以前 ecb51654e5224950f1fe8d139190d1c1a8daebca
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();
    }
}