wangyunpeng 5 kuukautta sitten
vanhempi
commit
a845bf33f2

+ 0 - 2
long-article-recommend-service/src/main/java/com/tzld/longarticle/recommend/server/mapper/aigc/AigcBaseMapper.java

@@ -34,7 +34,5 @@ public interface AigcBaseMapper {
 
     List<ProduceTaskAtom> getProduceScoreGreaterThan(Long startTimeStamp, Long endTimeStamp);
 
-    void updatePublishContentSingleMiniProgram(List<String> publishContentIds);
-
     List<ProduceTaskAtom> getProduceScoreByContentId(List<String> planExeIds);
 }

+ 0 - 7
long-article-recommend-service/src/main/resources/mapper/aigc/AigcBaseMapper.xml

@@ -112,13 +112,6 @@
         order by record.audit_timestamp desc
     </select>
 
-    <update id="updatePublishContentSingleMiniProgram">
-        update publish_content set gzh_only_miniprogram_flag = 1 where id in
-        <foreach collection="publishContentIds" item="item" open="(" close=")" separator=",">
-            #{item}
-        </foreach>
-    </update>
-
     <select id="getProduceScoreByContentId"
             resultType="com.tzld.longarticle.recommend.server.model.entity.aigc.ProduceTaskAtom">
         select atom.plan_exe_id, atom.input, atom.output, record.audit_timestamp as createTimestamp