Explorar el Código

增加 rec_status字段

by su hace 4 años
padre
commit
da9b01d2ce

+ 5 - 0
4dkankan-scene/src/main/java/com/fdkankan/scene/entity/VideoSceneProgressEntity.java

@@ -55,6 +55,11 @@ public class VideoSceneProgressEntity extends BaseEntity implements Serializable
     private String hdrParam;
 
 
+    @Column(name = "rec_status")
+    @ApiModelProperty(value="hdr_param 参数",name="",example="")
+    private String recStatus;
+
+
 
 
 

+ 1 - 0
4dkankan-web/src/main/java/com/fdkankan/web/controller/SceneController.java

@@ -462,6 +462,7 @@ public class SceneController extends BaseController {
         videoSceneProgressEntity.setRebuildQueueStartTime(new Date());
         videoSceneProgressEntity.setHdrParam(hdrObject.toJSONString());
         videoSceneProgressEntity.setRebuildParam(reObject.toJSONString());
+        videoSceneProgressEntity.setRecStatus("A");
         rebuildVideoProgressService.save(videoSceneProgressEntity);
 
         return Result.success("视频场景计算中");