mirror of
https://github.com/Geniusay/ChopperBot.git
synced 2026-09-06 07:51:56 +08:00
9 lines
217 B
Java
9 lines
217 B
Java
package org.example.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.example.pojo.Video;
|
|
import org.example.pojo.VideoLabel;
|
|
|
|
public interface LabelMapper extends BaseMapper<VideoLabel> {
|
|
}
|