傅行帆 il y a 3 ans
Parent
révision
8962bd7942

+ 3
- 0
src/main/java/com/yunzhi/marketing/entity/TaBuilding.java Voir le fichier

@@ -372,6 +372,9 @@ public class TaBuilding implements Serializable {
372 372
      */
373 373
     private String marketingCode;
374 374
 
375
+    /** 是否文旅商办 */
376
+    private Integer isCommerce ;
377
+
375 378
     /**
376 379
      * 项目亮点封面
377 380
      */

+ 8
- 0
src/main/java/com/yunzhi/marketing/entity/TaBuildingDynamic.java Voir le fichier

@@ -232,5 +232,13 @@ public class TaBuildingDynamic implements Serializable {
232 232
     @TableField(exist = false)
233 233
     private Integer enlisted;
234 234
 
235
+    /**
236
+     * dymic 普通活动 house 团房活动
237
+     */
235 238
     private String type;
239
+
240
+    /**
241
+     * 副标题
242
+     */
243
+    private String halfTitle;
236 244
 }

+ 2
- 0
src/main/java/com/yunzhi/marketing/po/LiveAndVideoVO.java Voir le fichier

@@ -7,6 +7,8 @@ import java.time.LocalDate;
7 7
 @Data
8 8
 public class LiveAndVideoVO {
9 9
 
10
+    private String id;
11
+
10 12
     private String title;
11 13
 
12 14
     private LocalDate startTime;

+ 2
- 0
src/main/resources/mapper/TaLiveActivityMapper.xml Voir le fichier

@@ -73,6 +73,7 @@
73 73
 
74 74
     <select id="getWxLiveActivityAndVideo" resultType="com.yunzhi.marketing.po.LiveAndVideoVO">
75 75
         SELECT
76
+            t.live_activity_id as id,
76 77
             t.live_activity_title AS title,
77 78
             t.live_start_date AS start_time,
78 79
             t.live_end_date AS end_time,
@@ -91,6 +92,7 @@
91 92
         </if>
92 93
     UNION
93 94
         SELECT
95
+            t.video_id as id,
94 96
             t.NAME AS title,
95 97
             t.CREATED_TIME AS startTime,
96 98
             t.CREATED_TIME AS endTime,