package com.ruoyi.system.service; import java.util.List; import com.ruoyi.system.domain.BVideoAllow; /** * 允许列Service接口 * * @author ruoyi * @date 2022-03-10 */ public interface IBVideoAllowService { /** * 查询允许列 * * @param id 允许列主键 * @return 允许列 */ public BVideoAllow selectBVideoAllowById(Long id); /** * 查询允许列列表 * * @param bVideoAllow 允许列 * @return 允许列集合 */ public List selectBVideoAllowList(BVideoAllow bVideoAllow); /** * 新增允许列 * * @param bVideoAllow 允许列 * @return 结果 */ public int insertBVideoAllow(BVideoAllow bVideoAllow); /** * 修改允许列 * * @param bVideoAllow 允许列 * @return 结果 */ public int updateBVideoAllow(BVideoAllow bVideoAllow); /** * 批量删除允许列 * * @param ids 需要删除的允许列主键集合 * @return 结果 */ public int deleteBVideoAllowByIds(Long[] ids); /** * 删除允许列信息 * * @param id 允许列主键 * @return 结果 */ public int deleteBVideoAllowById(Long id); }