#
Junjie
4 天以前 6daf900a09adcca981f620744bf89851654d88e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.zy.core.model;
 
import com.zy.common.model.NavigateNode;
import lombok.Data;
 
import java.util.List;
 
@Data
public class TrafficControlDataModel {
 
    private Integer shuttleNo;
 
    private Integer taskNo;
 
    private List<NavigateNode> nodeList;
 
    private List<NavigateNode> totalNodeList;
 
    private Integer applyCount = 0;
 
    private Boolean taskExist;
 
    public TrafficControlDataModel() {
 
    }
 
    public TrafficControlDataModel(Integer shuttleNo, Integer taskNo, List<NavigateNode> nodeList, List<NavigateNode> totalNodeList) {
        this.shuttleNo = shuttleNo;
        this.taskNo = taskNo;
        this.nodeList = nodeList;
        this.totalNodeList = totalNodeList;
    }
 
}