wangyunpeng 3 недель назад
Родитель
Сommit
69039beb88

+ 0 - 4
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/dao/mapper/longarticle/LongArticlesTextMapper.java

@@ -34,8 +34,4 @@ public interface LongArticlesTextMapper {
 
 
     int updateByPrimaryKey(LongArticlesText record);
     int updateByPrimaryKey(LongArticlesText record);
 
 
-    /**
-     * 查询有标题但尚未在 vector_match_videos 中有匹配记录的文章
-     */
-    List<LongArticlesText> selectUnmatchedArticles();
 }
 }

+ 0 - 11
long-article-server/src/main/resources/mapper/longarticle/LongArticlesTextMapper.xml

@@ -472,15 +472,4 @@
     where content_id = #{contentId,jdbcType=VARCHAR}
     where content_id = #{contentId,jdbcType=VARCHAR}
   </update>
   </update>
 
 
-  <select id="selectUnmatchedArticles" resultMap="BaseResultMap">
-    select t.content_id, t.article_title, t.old_article_title, t.article_title_update_account,
-      t.article_title_update_timestamp, t.kimi_title, t.old_kimi_title, t.kimi_title_update_account,
-      t.kimi_title_update_timestamp, t.kimi_summary, t.kimi_keys, t.kimi_status, t.similarity_status,
-      t.start_processing_time, t.result_status, t.create_time
-    from long_articles_text t
-    left join long_articles_vector_match_videos v on t.content_id = v.content_id
-    where v.content_id is null
-      and t.article_title is not null
-      and t.article_title != ''
-  </select>
 </mapper>
 </mapper>