lyhzzz 1 неделя назад
Родитель
Сommit
3b7eb92cc8

+ 2 - 2
doc/update-2.2.0.sql

@@ -1,5 +1,5 @@
 ALTER TABLE `fd_fusion`.`t_scene_down_log`
 ADD COLUMN `type` varchar(255) NULL DEFAULT 'scene' AFTER `update_time`;
 
-
-
+ALTER TABLE `fd_fusion`.`t_case_files`
+    ADD COLUMN `num` varchar(255) NULL AFTER `tabulation_id`;

+ 0 - 1
src/main/java/com/fdkankan/fusion/controller/CaseController.java

@@ -22,7 +22,6 @@ import com.fdkankan.fusion.service.impl.CopyCaseService;
 import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
-import scala.Int;
 
 import java.util.ArrayList;
 import java.util.Arrays;

+ 1 - 1
src/main/java/com/fdkankan/fusion/controller/CaseTabulationController.java

@@ -95,7 +95,7 @@ public class CaseTabulationController extends BaseController{
             if(StringUtils.isBlank(fusionConfig.getPushDrawUrl())){
                 return ResultData.ok(caseTabulation);
             }
-            String pushUrl = fusionConfig.getPushJmUrl();
+            String pushUrl = fusionConfig.getPushDrawUrl();
             String kno = null;
             if( StringUtils.isNotBlank(caseTabulation.getListCover()) && caseTabulation.getOverviewId() != null){
                 CaseOverview caseOverview = caseOverviewService.getById(caseTabulation.getOverviewId());

+ 0 - 1
src/main/java/com/fdkankan/fusion/entity/CaseFiles.java

@@ -12,7 +12,6 @@ import java.util.List;
 
 import lombok.Getter;
 import lombok.Setter;
-import scala.Int;
 
 /**
  * <p>

+ 3 - 0
src/main/java/com/fdkankan/fusion/entity/SceneSegShape.java

@@ -80,5 +80,8 @@ public class SceneSegShape implements Serializable {
     @TableField("sid")
     private String sid;
 
+    @TableField("shape_type")
+    private String shapeType;
+
 
 }

+ 1 - 0
src/main/java/com/fdkankan/fusion/service/impl/SceneSegShapeServiceImpl.java

@@ -28,6 +28,7 @@ public class SceneSegShapeServiceImpl extends ServiceImpl<ISceneSegShapeMapper,
     public List<SceneSegShape> getListByNum(String num) {
         LambdaQueryWrapper<SceneSegShape> wrapper = new LambdaQueryWrapper<>();
         wrapper.eq(SceneSegShape::getNum,num);
+        wrapper.eq(SceneSegShape::getShapeType,"seg_pano");
         return this.list(wrapper);
     }