预设视频相关内容

This commit is contained in:
2021-08-17 08:10:58 +08:00
parent d8acadf2d7
commit 2f1bd267bf
21 changed files with 3728 additions and 24 deletions

View File

@@ -0,0 +1,32 @@
package com.yutou.nas.mybatis.dao;
import com.yutou.nas.mybatis.model.VideoInfo;
import com.yutou.nas.mybatis.model.VideoInfoExample;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface VideoInfoDao {
long countByExample(VideoInfoExample example);
int deleteByExample(VideoInfoExample example);
int deleteByPrimaryKey(Integer id);
int insert(VideoInfo record);
int insertSelective(VideoInfo record);
List<VideoInfo> selectByExample(VideoInfoExample example);
VideoInfo selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") VideoInfo record, @Param("example") VideoInfoExample example);
int updateByExample(@Param("record") VideoInfo record, @Param("example") VideoInfoExample example);
int updateByPrimaryKeySelective(VideoInfo record);
int updateByPrimaryKey(VideoInfo record);
}