Browse Source

fix:配置增加场景id

liaoyitao 6 days ago
parent
commit
5fb40483e1

+ 4 - 0
src/main/java/com/lqkj/cmlcp/module/config/domain/ConfigInfo.java

@@ -43,6 +43,10 @@ public class ConfigInfo {
43
     @Schema(description = "ueh5地址")
43
     @Schema(description = "ueh5地址")
44
     private String ueH5Address;
44
     private String ueH5Address;
45
 
45
 
46
+    @Column(name = "scene_id")
47
+    @Schema(description = "场景id")
48
+    private String sceneId;
49
+
46
 }
50
 }
47
 
51
 
48
 
52
 

+ 3 - 0
src/main/resources/db/migration/V2__add.sql

@@ -0,0 +1,3 @@
1
+alter table config_info
2
+    add column if not exists scene_id varchar(255) null;
3
+comment on column config_info.scene_id is '场景ID';