xiangpei
2025-05-19 76695c351a2a1a1cb09fedcdd1459c02c49b489d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.lili.modules.lmk.service;
 
import cn.lili.modules.lmk.domain.entity.VideoTagRef;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * 视频标签中间表 服务类
 *
 * @author xp
 * @since 2025-05-19
 */
public interface VideoTagRefService extends IService<VideoTagRef> {
 
 
}