From 0d9214d780c5093165f566f3e6f0c60f5d8aead7 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 22 五月 2025 11:28:46 +0800
Subject: [PATCH] 视频管理功能

---
 framework/src/main/java/cn/lili/modules/lmk/mapper/VideoTagRefMapper.java |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoTagRefMapper.java b/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoTagRefMapper.java
index 7548bf6..a1aa583 100644
--- a/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoTagRefMapper.java
+++ b/framework/src/main/java/cn/lili/modules/lmk/mapper/VideoTagRefMapper.java
@@ -1,8 +1,13 @@
 package cn.lili.modules.lmk.mapper;
 
 import cn.lili.modules.lmk.domain.entity.VideoTagRef;
+import cn.lili.modules.lmk.domain.vo.SimpleVideoTagVO;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+import java.util.Map;
 
 /**
  * 瑙嗛鏍囩涓棿琛� Mapper 鎺ュ彛
@@ -14,4 +19,5 @@
 public interface VideoTagRefMapper extends BaseMapper<VideoTagRef> {
 
 
+    List<SimpleVideoTagVO> getTagsByVideoIds(@Param("videoIds") List<String> videoIds);
 }

--
Gitblit v1.8.0