1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.lili.modules.lmk.mapper;
|
| import cn.lili.modules.lmk.domain.entity.VideoGoods;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 视频商品中间表 Mapper 接口
| *
| * @author xp
| * @since 2025-06-15
| */
| @Mapper
| public interface VideoGoodsMapper extends BaseMapper<VideoGoods> {
|
|
| }
|
|