You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
315 B
17 lines
315 B
package com.zh.project0512.mapper;
|
|
|
|
import com.zh.project0512.model.Video;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Insert;
|
|
|
|
/**
|
|
* <p>
|
|
* Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author zh
|
|
* @since 2022-05-18
|
|
*/
|
|
public interface VideoMapper extends BaseMapper<Video> {
|
|
}
|