傅行帆 5 years ago
parent
commit
30622f38ec

+ 5
- 0
src/main/java/com/huiju/estateagents/common/CommConstant.java View File

530
      */
530
      */
531
     public static final String HOUSE = "house";
531
     public static final String HOUSE = "house";
532
 
532
 
533
+    /**
534
+     * 批量销售
535
+     */
536
+    public static final String SALES_BATCH = "salesBatch";
537
+
533
     /**
538
     /**
534
      * 直播分享
539
      * 直播分享
535
      */
540
      */

+ 1
- 1
src/main/java/com/huiju/estateagents/controller/TaSalesBatchController.java View File

138
             }
138
             }
139
             QueryWrapper<ExtendContent> queryWrapper = new QueryWrapper<>();
139
             QueryWrapper<ExtendContent> queryWrapper = new QueryWrapper<>();
140
             queryWrapper.eq("org_id",getOrgId(request));
140
             queryWrapper.eq("org_id",getOrgId(request));
141
-            queryWrapper.eq("content_type",CommConstant.HOUSE);
141
+            queryWrapper.eq("content_type",CommConstant.SALES_BATCH);
142
             queryWrapper.in("target_id",liveActivityIds);
142
             queryWrapper.in("target_id",liveActivityIds);
143
             List<ExtendContent> list = iExtendContentService.list(queryWrapper);
143
             List<ExtendContent> list = iExtendContentService.list(queryWrapper);
144
             list.forEach(e -> {
144
             list.forEach(e -> {