#
Junjie
12 小时以前 f3b64d003bc3458af3dd434e6187d3aba23a64aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.core.thread.impl.station;
 
import com.zy.core.model.command.StationCommand;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
@Data
public class StationSegmentExecutionPlan {
 
    private List<Integer> fullPathStationIds = new ArrayList<>();
 
    private List<StationCommand> segmentCommands = new ArrayList<>();
}