浏览代码

内部接口鉴权

dengsixing 1 月之前
父节点
当前提交
fe17e4e676

+ 6 - 0
src/main/java/com/fdkankan/scene/entity/SceneEditControls.java

@@ -170,5 +170,11 @@ public class SceneEditControls implements Serializable {
     @TableLogic(value = "A", delval = "I")
     private String recStatus;
 
+    @TableField("show_music")
+    private Integer showMusic;
+
+    @TableField("show_title_logo")
+    private Integer showTitleLogo;
+
 
 }

+ 13 - 0
src/main/java/com/fdkankan/scene/entity/SceneEditInfo.java

@@ -203,5 +203,18 @@ public class SceneEditInfo implements Serializable {
     @TableLogic(value = "A", delval = "I")
     private String recStatus;
 
+    /**
+     * 标题logo名称
+     */
+    @TableField("title_logo")
+    private String titleLogo;
+
+
+    /**
+     * 标题logo文件名称
+     */
+    @TableField("title_logo_file")
+    private String titleLogoFile;
+
 
 }

+ 4 - 0
src/main/java/com/fdkankan/scene/vo/SceneEditControlsParamVO.java

@@ -127,6 +127,10 @@ public class SceneEditControlsParamVO implements Serializable {
      */
     private Integer showAllModel;
 
+    private Integer showMusic;
+
+    private Integer showTitleLogo;
+
 
 
 

+ 4 - 0
src/main/java/com/fdkankan/scene/vo/SceneEditControlsVO.java

@@ -117,5 +117,9 @@ public class SceneEditControlsVO implements Serializable {
      */
     private Integer showAllModel;
 
+    private Integer showMusic;
+
+    private Integer showTitleLogo;
+
 
 }