瀏覽代碼

美博会专题页数据

Aslee 4 年之前
父節點
當前提交
c71209019c

+ 28 - 0
base-module/src/main/java/com/caimei/module/base/entity/po/NewPageFloorContent.java

@@ -42,6 +42,14 @@ public class NewPageFloorContent implements Serializable {
      * 网站广告图3
      */
     private String pcAdsImage3;
+    /**
+     * 网站广告图4
+     */
+    private String pcAdsImage4;
+    /**
+     * 网站广告图5
+     */
+    private String pcAdsImage5;
 
     /**
      * 移动端广告图1
@@ -58,6 +66,16 @@ public class NewPageFloorContent implements Serializable {
      */
     private String appletsAdsImage3;
 
+    /**
+     * 移动端广告图4
+     */
+    private String appletsAdsImage4;
+
+    /**
+     * 移动端广告图5
+     */
+    private String appletsAdsImage5;
+
     /**
      * 广告跳转链接1
      */
@@ -73,5 +91,15 @@ public class NewPageFloorContent implements Serializable {
      */
     private String adsLink3;
 
+    /**
+     * 广告跳转链接4
+     */
+    private String adsLink4;
+
+    /**
+     * 广告跳转链接5
+     */
+    private String adsLink5;
+
     private static final long serialVersionUID = 1L;
 }

+ 10 - 0
base-module/src/main/java/com/caimei/module/base/entity/po/NewPageFloorImage.java

@@ -34,6 +34,11 @@ public class NewPageFloorImage implements Serializable {
      */
     private String name;
 
+    /**
+     * 宣传内容
+     */
+    private String content;
+
     /**
      * 跳转链接
      */
@@ -44,6 +49,11 @@ public class NewPageFloorImage implements Serializable {
      */
     private String image;
 
+    /**
+     * 小程序内容宣传图
+     */
+    private String adsImage;
+
     /**
      * 标签
      */

+ 18 - 0
base-module/src/main/java/com/caimei/module/base/entity/vo/FloorContentVo.java

@@ -43,4 +43,22 @@ public class FloorContentVo extends NewPageFloorContent {
      * 链接包含的参数
      */
     private Map<String, Object> linkParam3;
+
+    /**
+     * 同上
+     */
+    private Integer linkType4;
+    /**
+     * 链接包含的参数
+     */
+    private Map<String, Object> linkParam4;
+
+    /**
+     * 同上
+     */
+    private Integer linkType5;
+    /**
+     * 链接包含的参数
+     */
+    private Map<String, Object> linkParam5;
 }