mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-05-03 14:44:22 +08:00
Merge branch 'master' of https://github.com/tencentmusic/supersonic
This commit is contained in:
@@ -18,4 +18,6 @@ public interface ChatParseMapper {
|
|||||||
List<ChatParseDO> getParseInfoList(List<Long> questionIds);
|
List<ChatParseDO> getParseInfoList(List<Long> questionIds);
|
||||||
|
|
||||||
List<ChatParseDO> getContextualParseInfo(Integer chatId);
|
List<ChatParseDO> getContextualParseInfo(Integer chatId);
|
||||||
|
|
||||||
|
int deleteByQuestionId(Long questionId);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,4 +52,9 @@
|
|||||||
where chat_id = #{chatId} order by question_id desc limit 10
|
where chat_id = #{chatId} order by question_id desc limit 10
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<delete id="deleteByQuestionId">
|
||||||
|
delete from s2_chat_parse
|
||||||
|
where question_id = #{questionId}
|
||||||
|
</delete>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
Reference in New Issue
Block a user