| 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; | 
|     } | 
|   | 
| } |