|
@@ -484,6 +484,7 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
@Override
|
|
|
public ResultData uploadSuccessBuild(String params) throws Exception {
|
|
|
log.info("uploadSuccessBuild-params: " + params);
|
|
|
+ String preParams = params;
|
|
|
if (StringUtils.isEmpty(params)) {
|
|
|
throw new BusinessException(ErrorCode.PARAM_REQUIRED);
|
|
|
}
|
|
@@ -545,7 +546,7 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
|
|
|
// 判断是否是正顺的场景,如果是正顺的场景,则发送到原来的系统进行计算
|
|
|
if (cameraDetail.getCompanyId().equals(1L)) {
|
|
|
- callV3Service(params);
|
|
|
+ callV3Service(preParams);
|
|
|
return ResultData.ok();
|
|
|
}
|
|
|
|