From 822b60fd6a7d73708b908123e6d5b976fb38264a Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 22 Dec 2021 14:59:25 +0800
Subject: [PATCH] fix
---
src/main/resources/mapper/modules/VideoCollectionMapper.xml | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/modules/VideoCollectionMapper.xml b/src/main/resources/mapper/modules/VideoCollectionMapper.xml
index 2b2d77e..2eb7e09 100644
--- a/src/main/resources/mapper/modules/VideoCollectionMapper.xml
+++ b/src/main/resources/mapper/modules/VideoCollectionMapper.xml
@@ -20,7 +20,9 @@
<select id="selectApiMyVideoHistoryInPage" resultType="cc.mrbird.febs.video.vo.ApiMyVideoHistoryVo">
select
- a.video_id id,
+ a.id id,
+ a.video_id videoId,
+ a.updated_time updatedTime,
b.title title,
b.intro intro,
b.thumb thumb,
@@ -38,4 +40,14 @@
order by a.created_time desc
</select>
+
+
+ <select id="selectVideoCollectionByVideoIdAndMemberId" resultType="cc.mrbird.febs.video.entity.VideoCollectionEntity">
+ select
+ a.*
+ from video_collection a
+ where a.member_id = #{memberId}
+ and a.video_id = #{videoId}
+ </select>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.9.1