|
|
@ -299,7 +299,7 @@ public class WaylineJobServiceImpl implements IWaylineJobService { |
|
|
|
.rthAltitude(entity.getRthAltitude()) |
|
|
|
.outOfControlAction(OutOfControlActionEnum.find(entity.getOutOfControlAction())) |
|
|
|
.mediaCount(entity.getMediaCount()) |
|
|
|
.codeName(ErrorCodeEnum.find(entity.getErrorCode()).getMessage()) |
|
|
|
.codeName(ErrorCodeEnum.find(entity.getErrorCode()==null?-1:entity.getErrorCode()).getMessage()) |
|
|
|
.breakPoint(entity.getBreakPoint()); |
|
|
|
|
|
|
|
|
|
|
@ -340,5 +340,4 @@ public class WaylineJobServiceImpl implements IWaylineJobService { |
|
|
|
.uploadedCount(uploadedSize).build()); |
|
|
|
return builder.build(); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|