|
@@ -907,7 +907,7 @@ public class StripService extends ServiceImpl<StripMapper, StripInfo> {
|
|
|
List<BizReq> bizReqs = new ArrayList<>();
|
|
|
List<EphTrack> ephdatas = new ArrayList<>();
|
|
|
BizReq bizReq = new BizReq();
|
|
|
- StripCalcResult stripCalcResult = new StripCalcResult();
|
|
|
+/* StripCalcResult stripCalcResult = new StripCalcResult();
|
|
|
String stripCalcResultId = String.valueOf(IdGenerator.getId())+ primaryKeyGenerator.getAndIncrement();
|
|
|
stripCalcResult.setStripCalcResultId(stripCalcResultId);
|
|
|
stripCalcResult.setTargetCode(targetRelationDTO.getTargetCode());
|
|
@@ -915,7 +915,7 @@ public class StripService extends ServiceImpl<StripMapper, StripInfo> {
|
|
|
stripCalcResult.setStartTime(targetRelationDTO.getStartTime());
|
|
|
stripCalcResult.setEndTime(targetRelationDTO.getEndTime());
|
|
|
stripCalcResult.setParentId(targetRelationDTO.getParentId());
|
|
|
- stripCalcResult.setSatelliteCode(payloadRpcDTO.getSatelliteCode());
|
|
|
+ stripCalcResult.setSatelliteCode(payloadRpcDTO.getSatelliteCode());*/
|
|
|
try {
|
|
|
/**
|
|
|
* 1.构建观测区域
|
|
@@ -977,21 +977,21 @@ public class StripService extends ServiceImpl<StripMapper, StripInfo> {
|
|
|
try {
|
|
|
saveStrips(stripDTOList, payloadRpcDTO, targetRelationDTO.getParentId(), targetRelationDTO.getPointDTOList().get(0));
|
|
|
}catch (Exception e){
|
|
|
- stripCalcResult.setIsSucceeded(STRIP_CALC_RESULT_FAILED);
|
|
|
+ /*stripCalcResult.setIsSucceeded(STRIP_CALC_RESULT_FAILED);*/
|
|
|
log.info("条带保存失败!");
|
|
|
}
|
|
|
// 条带提供测控、数传列表
|
|
|
insetAlgSchemeWindow(targetRelationDTO, payloadRpcDTO, algSchemeStepWindows);
|
|
|
}
|
|
|
- stripCalcResult.setIsSucceeded(STRIP_CALC_RESULT_SUCCEED);
|
|
|
+ /*stripCalcResult.setIsSucceeded(STRIP_CALC_RESULT_SUCCEED);*/
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
- stripCalcResults.add(stripCalcResult);
|
|
|
+ /*stripCalcResults.add(stripCalcResult);*/
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- stripCalcResultService.saveBatch(stripCalcResults);
|
|
|
+ /* stripCalcResultService.saveBatch(stripCalcResults);*/
|
|
|
}
|
|
|
|
|
|
/**
|