xiangpei
7 天以前 2226679bda25ddf977f12367a9a37fcf4e377249
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 接口
 *
 * @author xp
 * @since 2025-05-19
 */
@Mapper
public interface VideoTagRefMapper extends BaseMapper<VideoTagRef> {
 
 
    List<SimpleVideoTagVO> getTagsByVideoIds(@Param("videoIds") List<String> videoIds);
}