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