黄磊的项目,分享文件
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.
 
 
 
 
 

61 lines
1.2 KiB

package com.ruoyi.system.service;
import java.util.List;
import com.ruoyi.system.domain.BVideos;
/**
* 视频信息Service接口
*
* @author ruoyi
* @date 2022-03-09
*/
public interface IBVideosService
{
/**
* 查询视频信息
*
* @param id 视频信息主键
* @return 视频信息
*/
public BVideos selectBVideosById(Long id);
/**
* 查询视频信息列表
*
* @param bVideos 视频信息
* @return 视频信息集合
*/
public List<BVideos> selectBVideosList(BVideos bVideos);
/**
* 新增视频信息
*
* @param bVideos 视频信息
* @return 结果
*/
public int insertBVideos(BVideos bVideos);
/**
* 修改视频信息
*
* @param bVideos 视频信息
* @return 结果
*/
public int updateBVideos(BVideos bVideos);
/**
* 批量删除视频信息
*
* @param ids 需要删除的视频信息主键集合
* @return 结果
*/
public int deleteBVideosByIds(Long[] ids);
/**
* 删除视频信息信息
*
* @param id 视频信息主键
* @return 结果
*/
public int deleteBVideosById(Long id);
}