34 lines
		
	
	
		
			909 B
		
	
	
	
		
			Java
		
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			909 B
		
	
	
	
		
			Java
		
	
	
| 
								 | 
							
								package com.youchain.businessdata.inputJson;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import io.swagger.annotations.ApiModelProperty;
							 | 
						||
| 
								 | 
							
								import lombok.Data;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import java.util.List;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@Data
							 | 
						||
| 
								 | 
							
								public class MissionData {
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "序号")
							 | 
						||
| 
								 | 
							
								    Long sequence;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "作业位置类型", example = "NODE_POINT")
							 | 
						||
| 
								 | 
							
								    String type;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "作业路径位置")
							 | 
						||
| 
								 | 
							
								    String position;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "在点位上需要执行的动作")
							 | 
						||
| 
								 | 
							
								    String actionType;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "牵引车后方的拖挂车数量")
							 | 
						||
| 
								 | 
							
								    Long tugCount;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "模型名字")
							 | 
						||
| 
								 | 
							
								    List<String> tugModels;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "当前任务点结束后放行策略", example = "AUTO")
							 | 
						||
| 
								 | 
							
								    String passStrategy;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @ApiModelProperty(value = "自动触发离开当前任务节点的时间,默认单位:毫秒", example = "0")
							 | 
						||
| 
								 | 
							
								    Long waitingMillis;
							 | 
						||
| 
								 | 
							
								}
							 |