Sfoglia il codice sorgente

V1.1.3 查询条件修改

yumeng 4 anni fa
parent
commit
37ea5c1086

+ 1 - 6
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/controller/BatchController.java

@@ -1121,12 +1121,7 @@ public class BatchController {
                 throw new Exception("账户id不能为空");
             }
             QueryWrapper<KuaiShouVideoGet> queryWrapper = QueryGenerator.initQueryWrapper(kuaiShouVideoGet, req.getParameterMap());
-            KuaiShouAdvertiserBaseInfo baseInfo = KuaiShouAdvertiserBaseInfoService.getBaseInfo(accountId);
-            if (!Check.isNull(baseInfo)) {
-                queryWrapper.eq("user_id", baseInfo.getUserId());
-            } else {
-                queryWrapper.eq("account_id", accountId);
-            }
+            queryWrapper.eq("account_id", accountId);
             if (!Check.isNull(startDate) && !Check.isNull(endDate)) {
                 queryWrapper.between("stat_date", startDate, endDate);
             }