|
@@ -1,10 +1,10 @@
|
|
package org.jeecg.modules.adweb.seo.service.impl;
|
|
package org.jeecg.modules.adweb.seo.service.impl;
|
|
|
|
|
|
|
|
+import static org.jeecg.modules.adweb.seo.dto.ComprehensiveStatistics.KeywordRankStats;
|
|
|
|
+
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.xkcoding.http.util.StringUtil;
|
|
import com.xkcoding.http.util.StringUtil;
|
|
|
|
|
|
-import jakarta.annotation.Resource;
|
|
|
|
-
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
@@ -18,19 +18,21 @@ import org.jeecg.modules.adweb.common.constant.AdwebConstant;
|
|
import org.jeecg.modules.adweb.seo.dto.ComprehensiveStatistics;
|
|
import org.jeecg.modules.adweb.seo.dto.ComprehensiveStatistics;
|
|
import org.jeecg.modules.adweb.seo.entity.SeoKeywords;
|
|
import org.jeecg.modules.adweb.seo.entity.SeoKeywords;
|
|
import org.jeecg.modules.adweb.seo.entity.SeoKeywordsSerp;
|
|
import org.jeecg.modules.adweb.seo.entity.SeoKeywordsSerp;
|
|
-import org.jeecg.modules.adweb.seo.entity.SeoPlanSubscription;
|
|
|
|
import org.jeecg.modules.adweb.seo.mapper.SeoKeywordsMapper;
|
|
import org.jeecg.modules.adweb.seo.mapper.SeoKeywordsMapper;
|
|
|
|
+import org.jeecg.modules.adweb.seo.mapper.SeoKeywordsSerpMapper;
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsRankService;
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsRankService;
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsSerpService;
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsSerpService;
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsService;
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsService;
|
|
-import org.jeecg.modules.adweb.seo.service.ISeoPlanSubscriptionService;
|
|
|
|
import org.jeecg.modules.adweb.seo.vo.RankInfoVO;
|
|
import org.jeecg.modules.adweb.seo.vo.RankInfoVO;
|
|
import org.jeecg.modules.adweb.seo.vo.SeoRankInfoVO;
|
|
import org.jeecg.modules.adweb.seo.vo.SeoRankInfoVO;
|
|
|
|
+import org.jeecg.modules.adweb.seo.vo.ServiceTimeVO;
|
|
import org.jeecg.modules.adweb.site.entity.AdwebSite;
|
|
import org.jeecg.modules.adweb.site.entity.AdwebSite;
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
import org.jeecg.modules.adweb.site.service.ISiteUserPermissionService;
|
|
import org.jeecg.modules.adweb.site.service.ISiteUserPermissionService;
|
|
-import org.jeecg.modules.adweb.subscribePlan.entity.SubscribePlan;
|
|
|
|
-import org.jeecg.modules.adweb.subscribePlan.mapper.SubscribePlanMapper;
|
|
|
|
|
|
+import org.jeecg.modules.adweb.subscription.entity.SubscribePlan;
|
|
|
|
+import org.jeecg.modules.adweb.subscription.entity.UserPlanSubscription;
|
|
|
|
+import org.jeecg.modules.adweb.subscription.mapper.SubscribePlanMapper;
|
|
|
|
+import org.jeecg.modules.adweb.subscription.service.IUserPlanSubscriptionService;
|
|
import org.jeecg.modules.adweb.system.service.SysAdwebApi;
|
|
import org.jeecg.modules.adweb.system.service.SysAdwebApi;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
@@ -40,38 +42,29 @@ import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * @Description: seo_kpi_statistics
|
|
|
|
- * @Author: jeecg-boot
|
|
|
|
- * @Date: 2024-10-09
|
|
|
|
- * @Version: V1.0
|
|
|
|
|
|
+ * @Description: seo_kpi_statistics @Author: jeecg-boot @Date: 2024-10-09 @Version: V1.0
|
|
*/
|
|
*/
|
|
@Service
|
|
@Service
|
|
@Slf4j
|
|
@Slf4j
|
|
public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
|
|
|
- @Autowired
|
|
|
|
- private IAdwebSiteService adwebSiteService;
|
|
|
|
|
|
+ @Autowired private IAdwebSiteService adwebSiteService;
|
|
|
|
+
|
|
|
|
+ @Autowired private SysAdwebApi sysAdwebApi;
|
|
|
|
|
|
- @Resource
|
|
|
|
- private SysAdwebApi sysAdwebApi;
|
|
|
|
|
|
+ @Autowired private ISiteUserPermissionService siteUserPermissionService;
|
|
|
|
|
|
- @Autowired
|
|
|
|
- private ISiteUserPermissionService siteUserPermissionService;
|
|
|
|
|
|
+ @Autowired private IUserPlanSubscriptionService userPlanSubscriptionService;
|
|
|
|
|
|
- @Autowired
|
|
|
|
- private ISeoPlanSubscriptionService seoPlanSubscriptionService;
|
|
|
|
|
|
+ @Autowired private ISeoKeywordsService seoKeywordsService;
|
|
|
|
|
|
- @Autowired
|
|
|
|
- private ISeoKeywordsService seoKeywordsService;
|
|
|
|
|
|
+ @Autowired private SeoKeywordsMapper seoKeywordsMapper;
|
|
|
|
|
|
- @Resource
|
|
|
|
- private SeoKeywordsMapper seoKeywordsMapper;
|
|
|
|
|
|
+ @Autowired private SeoKeywordsSerpMapper seoKeywordsSerpMapper;
|
|
|
|
|
|
- @Autowired
|
|
|
|
- private ISeoKeywordsSerpService seoKeywordsSerpService;
|
|
|
|
|
|
+ @Autowired private ISeoKeywordsSerpService seoKeywordsSerpService;
|
|
|
|
|
|
- @Resource
|
|
|
|
- private SubscribePlanMapper subscribePlanMapper;
|
|
|
|
|
|
+ @Autowired private SubscribePlanMapper subscribePlanMapper;
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public List<AdwebSite> getAllSites() {
|
|
public List<AdwebSite> getAllSites() {
|
|
@@ -82,10 +75,13 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
|
|
LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
|
|
queryWrapper.select(AdwebSite::getId, AdwebSite::getName, AdwebSite::getCode);
|
|
queryWrapper.select(AdwebSite::getId, AdwebSite::getName, AdwebSite::getCode);
|
|
queryWrapper.orderByDesc(AdwebSite::getCreateTime);
|
|
queryWrapper.orderByDesc(AdwebSite::getCreateTime);
|
|
- queryWrapper.eq(AdwebSite::getStatus, AdwebConstant.STATUS).isNull(AdwebSite::getParentGroupCode);
|
|
|
|
|
|
+ queryWrapper
|
|
|
|
+ .eq(AdwebSite::getStatus, AdwebConstant.STATUS)
|
|
|
|
+ .isNull(AdwebSite::getParentGroupCode);
|
|
if (sysAdwebApi.isChannelAdmin()) {
|
|
if (sysAdwebApi.isChannelAdmin()) {
|
|
List<String> channelGroupUids = sysAdwebApi.getChannelGroupUids();
|
|
List<String> channelGroupUids = sysAdwebApi.getChannelGroupUids();
|
|
- List<String> codeList = siteUserPermissionService.getSiteCodeListByUids(channelGroupUids);
|
|
|
|
|
|
+ List<String> codeList =
|
|
|
|
+ siteUserPermissionService.getSiteCodeListByUids(channelGroupUids);
|
|
queryWrapper.in(AdwebSite::getCode, codeList);
|
|
queryWrapper.in(AdwebSite::getCode, codeList);
|
|
} else if (!sysAdwebApi.isAdmin()) {
|
|
} else if (!sysAdwebApi.isAdmin()) {
|
|
List<String> codeList = siteUserPermissionService.getSiteCodeList(sysUser.getId());
|
|
List<String> codeList = siteUserPermissionService.getSiteCodeList(sysUser.getId());
|
|
@@ -96,9 +92,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
return siteList;
|
|
return siteList;
|
|
}
|
|
}
|
|
|
|
|
|
- /**
|
|
|
|
- * 放入营销方案名称
|
|
|
|
- */
|
|
|
|
|
|
+ /** 放入营销方案名称 */
|
|
private void setPlanName(List<AdwebSite> siteList) {
|
|
private void setPlanName(List<AdwebSite> siteList) {
|
|
if (CollectionUtils.isEmpty(siteList)) {
|
|
if (CollectionUtils.isEmpty(siteList)) {
|
|
return;
|
|
return;
|
|
@@ -109,22 +103,29 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
siteIds.add(site.getId());
|
|
siteIds.add(site.getId());
|
|
}
|
|
}
|
|
|
|
|
|
- LambdaQueryWrapper<SeoPlanSubscription> historyQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
- historyQueryWrapper.select(SeoPlanSubscription::getId, SeoPlanSubscription::getPlanId, SeoPlanSubscription::getSiteId, SeoPlanSubscription::getPlanName, SeoPlanSubscription::getPlanType);
|
|
|
|
- historyQueryWrapper.in(SeoPlanSubscription::getSiteId, siteIds);
|
|
|
|
- historyQueryWrapper.eq(SeoPlanSubscription::getStatus, 1);
|
|
|
|
- List<SeoPlanSubscription> seoPlanSubscriptions = seoPlanSubscriptionService.list(historyQueryWrapper);
|
|
|
|
- if (CollectionUtils.isEmpty(seoPlanSubscriptions)) {
|
|
|
|
|
|
+ LambdaQueryWrapper<UserPlanSubscription> subscriptionQueryWrapper =
|
|
|
|
+ new LambdaQueryWrapper<>();
|
|
|
|
+ subscriptionQueryWrapper.select(
|
|
|
|
+ UserPlanSubscription::getId,
|
|
|
|
+ UserPlanSubscription::getPlanId,
|
|
|
|
+ UserPlanSubscription::getSiteId,
|
|
|
|
+ UserPlanSubscription::getPlanName,
|
|
|
|
+ UserPlanSubscription::getPlanType);
|
|
|
|
+ subscriptionQueryWrapper.in(UserPlanSubscription::getSiteId, siteIds);
|
|
|
|
+ subscriptionQueryWrapper.eq(UserPlanSubscription::getStatus, 1);
|
|
|
|
+ List<UserPlanSubscription> userPlanSubscriptions =
|
|
|
|
+ userPlanSubscriptionService.list(subscriptionQueryWrapper);
|
|
|
|
+ if (CollectionUtils.isEmpty(userPlanSubscriptions)) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
for (AdwebSite site : siteList) {
|
|
for (AdwebSite site : siteList) {
|
|
- for (SeoPlanSubscription seoPlanSubscription : seoPlanSubscriptions) {
|
|
|
|
- if (seoPlanSubscription.getSiteId().equals(site.getId() + "")) {
|
|
|
|
- site.setPlanId(seoPlanSubscription.getPlanId());
|
|
|
|
- site.setPlanName(seoPlanSubscription.getPlanName());
|
|
|
|
- site.setSubscriptionId(seoPlanSubscription.getId());
|
|
|
|
- site.setPlanType(seoPlanSubscription.getPlanType());
|
|
|
|
|
|
+ for (UserPlanSubscription userPlanSubscription : userPlanSubscriptions) {
|
|
|
|
+ if (userPlanSubscription.getSiteId().equals(site.getId() + "")) {
|
|
|
|
+ site.setPlanId(userPlanSubscription.getPlanId());
|
|
|
|
+ site.setPlanName(userPlanSubscription.getPlanName());
|
|
|
|
+ site.setSubscriptionId(userPlanSubscription.getId());
|
|
|
|
+ site.setPlanType(userPlanSubscription.getPlanType());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -142,8 +143,13 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
// 根据站点code获取站点
|
|
// 根据站点code获取站点
|
|
AdwebSite siteByCode = adwebSiteService.getSiteByCode(siteCode);
|
|
AdwebSite siteByCode = adwebSiteService.getSiteByCode(siteCode);
|
|
// 1.获取套餐数据
|
|
// 1.获取套餐数据
|
|
- SubscribePlan subscribePlan = subscribePlanMapper.getSubscribePlanBySiteId(siteByCode.getId());
|
|
|
|
|
|
+ SubscribePlan subscribePlan =
|
|
|
|
+ subscribePlanMapper.getSubscribePlanBySiteId(siteByCode.getId());
|
|
if (subscribePlan != null) {
|
|
if (subscribePlan != null) {
|
|
|
|
+ // 添加套餐信息
|
|
|
|
+ comprehensiveStatistics.setPlanName(subscribePlan.getPlanName());
|
|
|
|
+ comprehensiveStatistics.setPlanType(subscribePlan.getPlanType());
|
|
|
|
+
|
|
// 添加套餐数据
|
|
// 添加套餐数据
|
|
comprehensiveStatistics.setPlanAppointKeywordNum(subscribePlan.getSpecifyKeyword());
|
|
comprehensiveStatistics.setPlanAppointKeywordNum(subscribePlan.getSpecifyKeyword());
|
|
comprehensiveStatistics.setPlanLongTailKeywordNum(subscribePlan.getLongTailKeyword());
|
|
comprehensiveStatistics.setPlanLongTailKeywordNum(subscribePlan.getLongTailKeyword());
|
|
@@ -152,32 +158,44 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
}
|
|
}
|
|
// 添加站点数据
|
|
// 添加站点数据
|
|
// 1.获取站点指定词数量
|
|
// 1.获取站点指定词数量
|
|
- LambdaQueryWrapper<SeoKeywords> seoKeywordsQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
- seoKeywordsQueryWrapper.eq(SeoKeywords::getSiteCode, siteCode);
|
|
|
|
- seoKeywordsQueryWrapper.eq(SeoKeywords::getStatus, 1);
|
|
|
|
- seoKeywordsQueryWrapper.eq(SeoKeywords::getKeywordType, 1);
|
|
|
|
- Long appointKeywordNum = seoKeywordsMapper.selectCount(seoKeywordsQueryWrapper);
|
|
|
|
- // 2.获取站点关键词数量
|
|
|
|
- LambdaQueryWrapper<SeoKeywords> seoKeywordsQueryWrapper1 = new LambdaQueryWrapper<>();
|
|
|
|
- seoKeywordsQueryWrapper1.eq(SeoKeywords::getSiteCode, siteCode);
|
|
|
|
- seoKeywordsQueryWrapper1.eq(SeoKeywords::getStatus, 1);
|
|
|
|
- seoKeywordsQueryWrapper1.eq(SeoKeywords::getKeywordType, 2);
|
|
|
|
- Long longTailKeywordNum = seoKeywordsMapper.selectCount(seoKeywordsQueryWrapper1);
|
|
|
|
- comprehensiveStatistics.setAppointKeywordNum(Math.toIntExact(appointKeywordNum));
|
|
|
|
- comprehensiveStatistics.setLongTailKeywordNum(Math.toIntExact(longTailKeywordNum));
|
|
|
|
|
|
+ List<KeywordRankStats> keywordRankStats =
|
|
|
|
+ seoKeywordsMapper.getKeywordsRankStats(
|
|
|
|
+ siteCode,
|
|
|
|
+ Optional.ofNullable(subscribePlan.getTarget()).orElse(10)); // 默认排名前10
|
|
|
|
+ for (KeywordRankStats rankStats : keywordRankStats) {
|
|
|
|
+ if (rankStats.getKeywordType() == 1) {
|
|
|
|
+ // 指定词
|
|
|
|
+ comprehensiveStatistics.setAppointKeywordNum(rankStats.getKeywordNum());
|
|
|
|
+ comprehensiveStatistics.setAchievedAppointKeywordNum(
|
|
|
|
+ rankStats.getAchievedKeywordNum());
|
|
|
|
+ } else {
|
|
|
|
+ comprehensiveStatistics.setLongTailKeywordNum(rankStats.getKeywordNum());
|
|
|
|
+ comprehensiveStatistics.setAchievedLongTailKeywordNum(
|
|
|
|
+ rankStats.getAchievedKeywordNum());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
return comprehensiveStatistics;
|
|
return comprehensiveStatistics;
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public Map getRankInfo(String siteCode) throws ParseException {
|
|
public Map getRankInfo(String siteCode) throws ParseException {
|
|
- //通过站点code获取站点id
|
|
|
|
|
|
+ // 通过站点code获取站点id
|
|
AdwebSite siteByCode = adwebSiteService.getSiteByCode(siteCode);
|
|
AdwebSite siteByCode = adwebSiteService.getSiteByCode(siteCode);
|
|
- SeoPlanSubscription seoPlanSubscription = seoPlanSubscriptionService.getCurrentSeoAndSiteSubscription(siteByCode.getId());
|
|
|
|
- //通过站点获取订阅id
|
|
|
|
- List<SeoRankInfoVO> seoRankInfos = this.getSeoRankInfo(siteCode, seoPlanSubscription.getId());
|
|
|
|
|
|
+ UserPlanSubscription userPlanSubscription =
|
|
|
|
+ userPlanSubscriptionService.getCurrentSubscription(siteByCode.getId());
|
|
|
|
+ // 通过站点获取订阅id
|
|
|
|
+ List<SeoRankInfoVO> seoRankInfos =
|
|
|
|
+ this.getSeoRankInfo(siteCode, userPlanSubscription.getId());
|
|
Map map = new HashMap<>();
|
|
Map map = new HashMap<>();
|
|
map.put("appointKeyword", seoRankInfos.get(0));
|
|
map.put("appointKeyword", seoRankInfos.get(0));
|
|
map.put("longTailKeyword", seoRankInfos.get(1));
|
|
map.put("longTailKeyword", seoRankInfos.get(1));
|
|
|
|
+
|
|
|
|
+ // TODO - 获取达标时间和剩余服务时间
|
|
|
|
+ if (userPlanSubscription.getKeywordsAchieveTime() == null) {
|
|
|
|
+ seoKeywordsSerpMapper.getAchieveDate(siteCode, 10, 10, 10);
|
|
|
|
+ }
|
|
|
|
+ map.put("serviceTime", new ServiceTimeVO());
|
|
return map;
|
|
return map;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -252,7 +270,8 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
}
|
|
}
|
|
|
|
|
|
// 长尾词
|
|
// 长尾词
|
|
- List<String> dateList = seoKeywordsService.getKeywordsLastSevenDays(siteCode, 2, subscriptionId);
|
|
|
|
|
|
+ List<String> dateList =
|
|
|
|
+ seoKeywordsService.getKeywordsLastSevenDays(siteCode, 2, subscriptionId);
|
|
String dateStr = "";
|
|
String dateStr = "";
|
|
if (CollectionUtils.isNotEmpty(dateList)) {
|
|
if (CollectionUtils.isNotEmpty(dateList)) {
|
|
for (int i = 0; i < dateList.size(); i++) {
|
|
for (int i = 0; i < dateList.size(); i++) {
|
|
@@ -274,13 +293,18 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 给列表中的关键字增加排名信息
|
|
|
|
- * 根据关键词类型
|
|
|
|
|
|
+ * 给列表中的关键字增加排名信息 根据关键词类型
|
|
*
|
|
*
|
|
* @param keywordList 关键词列表
|
|
* @param keywordList 关键词列表
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
- public void addRankInfoByIntervalTimeByType(List<SeoKeywords> keywordList, Integer keywordType, String siteCode, String subscriptionId, List<String> dateList) throws Exception {
|
|
|
|
|
|
+ public void addRankInfoByIntervalTimeByType(
|
|
|
|
+ List<SeoKeywords> keywordList,
|
|
|
|
+ Integer keywordType,
|
|
|
|
+ String siteCode,
|
|
|
|
+ String subscriptionId,
|
|
|
|
+ List<String> dateList)
|
|
|
|
+ throws Exception {
|
|
if (CollectionUtils.isEmpty(keywordList)) {
|
|
if (CollectionUtils.isEmpty(keywordList)) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -298,17 +322,24 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
}
|
|
}
|
|
datesStr = "(" + datesStr + ")";
|
|
datesStr = "(" + datesStr + ")";
|
|
}
|
|
}
|
|
- List<Integer> keywordIds = keywordList.stream().map(SeoKeywords::getId).collect(Collectors.toList());
|
|
|
|
- List<SeoKeywordsSerp> serpList = seoKeywordsSerpService.list(new LambdaQueryWrapper<SeoKeywordsSerp>()
|
|
|
|
- .in(SeoKeywordsSerp::getKeywordsId, keywordIds)
|
|
|
|
- .in(SeoKeywordsSerp::getSeDate, dateList));
|
|
|
|
|
|
+ List<Integer> keywordIds =
|
|
|
|
+ keywordList.stream().map(SeoKeywords::getId).collect(Collectors.toList());
|
|
|
|
+ List<SeoKeywordsSerp> serpList =
|
|
|
|
+ seoKeywordsSerpService.list(
|
|
|
|
+ new LambdaQueryWrapper<SeoKeywordsSerp>()
|
|
|
|
+ .in(SeoKeywordsSerp::getKeywordsId, keywordIds)
|
|
|
|
+ .in(SeoKeywordsSerp::getSeDate, dateList));
|
|
List<SeoKeywordsSerp> noRepeatSerpList = new ArrayList<>();
|
|
List<SeoKeywordsSerp> noRepeatSerpList = new ArrayList<>();
|
|
Map<String, Integer> serpMap = new HashMap<>();
|
|
Map<String, Integer> serpMap = new HashMap<>();
|
|
if (CollectionUtils.isNotEmpty(serpList)) {
|
|
if (CollectionUtils.isNotEmpty(serpList)) {
|
|
for (SeoKeywordsSerp seoKeywordsSerp : serpList) {
|
|
for (SeoKeywordsSerp seoKeywordsSerp : serpList) {
|
|
- seoKeywordsSerp.setKey(seoKeywordsSerp.getKeywordsId() + "_" + seoKeywordsSerp.getSeDate());
|
|
|
|
|
|
+ seoKeywordsSerp.setKey(
|
|
|
|
+ seoKeywordsSerp.getKeywordsId() + "_" + seoKeywordsSerp.getSeDate());
|
|
if (CollectionUtils.isNotEmpty(noRepeatSerpList)) {
|
|
if (CollectionUtils.isNotEmpty(noRepeatSerpList)) {
|
|
- List<SeoKeywordsSerp> have = noRepeatSerpList.stream().filter(o -> o.getKey().equals(seoKeywordsSerp.getKey())).collect(Collectors.toList());
|
|
|
|
|
|
+ List<SeoKeywordsSerp> have =
|
|
|
|
+ noRepeatSerpList.stream()
|
|
|
|
+ .filter(o -> o.getKey().equals(seoKeywordsSerp.getKey()))
|
|
|
|
+ .collect(Collectors.toList());
|
|
if (CollectionUtils.isEmpty(have)) {
|
|
if (CollectionUtils.isEmpty(have)) {
|
|
serpMap.put(seoKeywordsSerp.getKey(), seoKeywordsSerp.getRankAbsolute());
|
|
serpMap.put(seoKeywordsSerp.getKey(), seoKeywordsSerp.getRankAbsolute());
|
|
noRepeatSerpList.add(seoKeywordsSerp);
|
|
noRepeatSerpList.add(seoKeywordsSerp);
|
|
@@ -349,7 +380,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
* 自适应宽度(中文支持)
|
|
* 自适应宽度(中文支持)
|
|
*
|
|
*
|
|
* @param sheet
|
|
* @param sheet
|
|
- * @param size 因为for循环从0开始,size值为 列数-1
|
|
|
|
|
|
+ * @param size 因为for循环从0开始,size值为 列数-1
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public void setSizeColumn(Sheet sheet, int size) {
|
|
public void setSizeColumn(Sheet sheet, int size) {
|
|
@@ -357,7 +388,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
int columnWidth = sheet.getColumnWidth(columnNum) / 256;
|
|
int columnWidth = sheet.getColumnWidth(columnNum) / 256;
|
|
for (int rowNum = 0; rowNum <= sheet.getLastRowNum(); rowNum++) {
|
|
for (int rowNum = 0; rowNum <= sheet.getLastRowNum(); rowNum++) {
|
|
Row currentRow;
|
|
Row currentRow;
|
|
- //当前行未被使用过
|
|
|
|
|
|
+ // 当前行未被使用过
|
|
if (sheet.getRow(rowNum) == null) {
|
|
if (sheet.getRow(rowNum) == null) {
|
|
currentRow = sheet.createRow(rowNum);
|
|
currentRow = sheet.createRow(rowNum);
|
|
} else {
|
|
} else {
|
|
@@ -379,7 +410,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public List<SeoPlanSubscription> getSubscriptionIdBySiteCode(String siteCode) {
|
|
|
|
|
|
+ public List<UserPlanSubscription> getSubscriptionIdBySiteCode(String siteCode) {
|
|
return seoKeywordsMapper.getSubscriptionIdBySiteCode(siteCode);
|
|
return seoKeywordsMapper.getSubscriptionIdBySiteCode(siteCode);
|
|
}
|
|
}
|
|
}
|
|
}
|