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
61 lines
1.2 KiB
package com.ruoyi.system.service; |
|
|
|
import java.util.List; |
|
import com.ruoyi.system.domain.BVideoAllow; |
|
|
|
/** |
|
* 允许列Service接口 |
|
* |
|
* @author ruoyi |
|
* @date 2022-03-09 |
|
*/ |
|
public interface IBVideoAllowService |
|
{ |
|
/** |
|
* 查询允许列 |
|
* |
|
* @param id 允许列主键 |
|
* @return 允许列 |
|
*/ |
|
public BVideoAllow selectBVideoAllowById(Long id); |
|
|
|
/** |
|
* 查询允许列列表 |
|
* |
|
* @param bVideoAllow 允许列 |
|
* @return 允许列集合 |
|
*/ |
|
public List<BVideoAllow> 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); |
|
}
|
|
|