xiaoyong931011
2021-12-15 6264de042f2ae3d56fd1d89f05dc9c1aa8445d6e
1
2
3
4
5
6
7
8
9
10
11
package cc.mrbird.febs.video.mapper;
 
import cc.mrbird.febs.video.entity.VideoCategoryEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
 
public interface VideoCategoryMapper extends BaseMapper<VideoCategoryEntity> {
 
    List<VideoCategoryEntity> selectAllCategory();
}