From 3b9e74e575abc3a410cb7951792d49b63842c5da Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 03 六月 2025 12:55:18 +0800
Subject: [PATCH] 视频封面
---
framework/src/main/resources/mapper/lmk/MyCollectMapper.xml | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/framework/src/main/resources/mapper/lmk/MyCollectMapper.xml b/framework/src/main/resources/mapper/lmk/MyCollectMapper.xml
index b3f1a43..3f06bcb 100644
--- a/framework/src/main/resources/mapper/lmk/MyCollectMapper.xml
+++ b/framework/src/main/resources/mapper/lmk/MyCollectMapper.xml
@@ -54,4 +54,16 @@
AND ref_id IN <foreach collection="videoIds" open="(" item="videoId" close=")" separator=",">#{videoId}</foreach>
</select>
+ <select id="countNumGroupByType" parameterType="string" resultType="cn.lili.modules.lmk.domain.vo.CollectTypeNumVO">
+ SELECT
+ ref_id as id,
+ count(id) as countNum
+ FROM
+ lmk_my_collect
+ WHERE
+ collect_type = #{type} AND delete_flag = 0
+ GROUP BY
+ ref_id
+ </select>
+
</mapper>
--
Gitblit v1.8.0