|
@@ -33,4 +33,9 @@ public interface ChatHistoryRepository extends BaseRepository<ChatHistoryEntity,
|
|
|
@Modifying
|
|
|
@Query(value = "DELETE FROM t_chat_history WHERE dialogue_id = ?1 AND create_time >= ?2 ", nativeQuery = true)
|
|
|
void deleteByDialogueIdAndCreateTime(String dialogueId, String createTime);
|
|
|
+
|
|
|
+ @Transactional
|
|
|
+ @Modifying
|
|
|
+ @Query(value = "DELETE FROM t_chat_history WHERE dialogue_id = ?1 ", nativeQuery = true)
|
|
|
+ void deleteByDialogueId(String dialogueId);
|
|
|
}
|