|
@@ -1,6 +1,6 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
-<mapper namespace="org.jeecg.modules.adweb.serp.mapper.SeoKeywordsMapper">
|
|
|
+<mapper namespace="org.jeecg.modules.adweb.seo.mapper.SeoKeywordsMapper">
|
|
|
<select id="getKeywordsLastSevenDays" resultType="java.lang.String">
|
|
|
SELECT t1.se_date
|
|
|
FROM seo_keywords_serp t1,
|
|
@@ -8,14 +8,14 @@
|
|
|
WHERE t2.`status` = 1
|
|
|
AND t1.keywords_id = t2.id
|
|
|
AND t2.app_key = 'adweb'
|
|
|
- AND t2.user_flag = #{siteCode}
|
|
|
+ AND t2.site_code = #{siteCode}
|
|
|
AND t2.keyword_type = #{keywordType}
|
|
|
- AND t2.history_id = #{historyId}
|
|
|
+ AND t2.subscription_id = #{subscriptionId}
|
|
|
GROUP BY t1.se_date
|
|
|
ORDER BY t1.se_date DESC
|
|
|
LIMIT 7
|
|
|
</select>
|
|
|
- <select id="queryKeywordNumByRankRange" resultType="org.jeecg.modules.adweb.serp.vo.RankInfoVO">
|
|
|
+ <select id="queryKeywordNumByRankRange" resultType="org.jeecg.modules.adweb.seo.vo.RankInfoVO">
|
|
|
SELECT
|
|
|
t.type keywordType,
|
|
|
count(t.id) keywordNum
|
|
@@ -27,10 +27,10 @@
|
|
|
FROM
|
|
|
seo_keywords t1
|
|
|
WHERE
|
|
|
- t1.user_flag = #{userFlag}
|
|
|
+ t1.site_code = #{siteCode}
|
|
|
AND `status` = 1
|
|
|
AND keyword_type = #{keywordType}
|
|
|
- AND history_id = #{historyId}
|
|
|
+ AND subscription_id = #{subscriptionId}
|
|
|
<if test="rankStart != null">
|
|
|
AND t1.last_rank >= #{rankStart}
|
|
|
</if>
|
|
@@ -55,14 +55,14 @@
|
|
|
t2.`status` = 1
|
|
|
AND t1.keywords_id = t2.id
|
|
|
AND t2.app_key = 'adweb'
|
|
|
- <if test="userFlag != null and userFlag != ''">
|
|
|
- AND t2.user_flag = #{userFlag}
|
|
|
+ <if test="siteCode != null and siteCode != ''">
|
|
|
+ AND t2.site_code = #{siteCode}
|
|
|
</if>
|
|
|
<if test="keywordType != null">
|
|
|
AND t2.keyword_type = #{keywordType}
|
|
|
</if>
|
|
|
- <if test="!historyId">
|
|
|
- AND t2.history_id = #{historyId}
|
|
|
+ <if test="!subscriptionId">
|
|
|
+ AND t2.subscription_id = #{subscriptionId}
|
|
|
</if>
|
|
|
AND se_date IN ${dateStr}
|
|
|
GROUP BY keywords_id
|
|
@@ -87,7 +87,7 @@
|
|
|
AND t2.site_id = t3.id
|
|
|
AND t3.`code` = #{siteCode}
|
|
|
</select>
|
|
|
- <select id="getKeywordList" resultType="org.jeecg.modules.adweb.serp.entity.SeoKeywords">
|
|
|
+ <select id="getKeywordList" resultType="org.jeecg.modules.adweb.seo.entity.SeoKeywords">
|
|
|
SELECT
|
|
|
DISTINCT t1.*,CHAR_LENGTH( keywords ) keywordsLength
|
|
|
FROM
|
|
@@ -98,7 +98,7 @@
|
|
|
AND t1.keywords LIKE CONCAT('%', #{keyword}, '%')
|
|
|
</if>
|
|
|
<if test="siteCode != null and siteCode != ''">
|
|
|
- AND t1.user_flag = #{siteCode}
|
|
|
+ AND t1.site_code = #{siteCode}
|
|
|
</if>
|
|
|
<if test="keywordType != null">
|
|
|
AND t1.keyword_type = #{keywordType}
|
|
@@ -111,8 +111,8 @@
|
|
|
</if>
|
|
|
AND t1.app_key = 'adweb'
|
|
|
AND t1.`status` = 1
|
|
|
- <if test="!historyId">
|
|
|
- AND t1.history_id = #{historyId}
|
|
|
+ <if test="!subscriptionId">
|
|
|
+ AND t1.subscription_id = #{subscriptionId}
|
|
|
</if>
|
|
|
AND
|
|
|
(
|
|
@@ -132,13 +132,13 @@
|
|
|
AND t1.keywords_id = t2.id
|
|
|
AND t2.app_key = 'adweb'
|
|
|
<if test="siteCode != null and siteCode != ''">
|
|
|
- AND t2.user_flag = #{siteCode}
|
|
|
+ AND t2.site_code = #{siteCode}
|
|
|
</if>
|
|
|
<if test="keywordType != null">
|
|
|
AND t2.keyword_type = #{keywordType}
|
|
|
</if>
|
|
|
- <if test="!historyId">
|
|
|
- AND t2.history_id = #{historyId}
|
|
|
+ <if test="!subscriptionId">
|
|
|
+ AND t2.subscription_id = #{subscriptionId}
|
|
|
</if>
|
|
|
AND se_date IN ${datesStr}
|
|
|
GROUP BY keywords_id
|
|
@@ -160,4 +160,25 @@
|
|
|
</if>
|
|
|
,create_time
|
|
|
</select>
|
|
|
+
|
|
|
+ <select id="getKeywordsToSerp" resultType="org.jeecg.modules.adweb.seo.entity.SeoKeywords">
|
|
|
+ SELECT
|
|
|
+ *
|
|
|
+ FROM
|
|
|
+ seo_keywords
|
|
|
+ WHERE
|
|
|
+ `status` = 1
|
|
|
+ AND site_code IN (
|
|
|
+ SELECT
|
|
|
+ `code`
|
|
|
+ FROM
|
|
|
+ adweb_site
|
|
|
+ WHERE
|
|
|
+ run_status = 1
|
|
|
+ AND `status` = 1
|
|
|
+ )
|
|
|
+ <if test = "keywordType != null">
|
|
|
+ AND keyword_type = #{keywordType}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
</mapper>
|