소스 검색

V1.1.3 查询条件修改

yumeng 4 년 전
부모
커밋
37ea5c1086
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/controller/BatchController.java

+ 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);
             }