预设视频相关内容

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,33 @@
package com.yutou.nas.mybatis.dao;
import com.yutou.nas.mybatis.model.VideoData;
import com.yutou.nas.mybatis.model.VideoDataExample;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface VideoDataDao {
long countByExample(VideoDataExample example);
int deleteByExample(VideoDataExample example);
int deleteByPrimaryKey(Integer id);
int insert(VideoData record);
int insertSelective(VideoData record);
List<VideoData> selectByExample(VideoDataExample example);
VideoData selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") VideoData record, @Param("example") VideoDataExample example);
int updateByExample(@Param("record") VideoData record, @Param("example") VideoDataExample example);
int updateByPrimaryKeySelective(VideoData record);
int updateByPrimaryKey(VideoData record);
}

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);
}

View File

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