dengsixing 7 ay önce
ebeveyn
işleme
f8ba73ae6e

+ 5 - 0
src/main/java/com/fdkankan/contro/service/impl/SceneFileBuildServiceImpl.java

@@ -1332,6 +1332,10 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
         if(sceneSource == 4 || sceneSource == 5){
             cameraType = 14L;
         }
+        String threeCamType = scenePlus.getThreeCamType();
+        if(StrUtil.isNotEmpty(threeCamType) && "yzl".equals(threeCamType)){
+            cameraType = 6L;
+        }
         BuildSceneCallMessage message = null;
         if(cameraType == 14){
             String userName = null;
@@ -1351,6 +1355,7 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
             message = this.getBuildSceneMqMessage(
                     num, cameraType, fdageData.getString("location") != null && "1".equals(fdageData.getString("location")) ? "sfm" : "slam",
                     fdageData, buildType, path);
+            message.getExt().put("threeCamType", threeCamType);
         }
         if(deleteExtras){
             message.getExt().put("deleteExtras",deleteExtras);