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

package com.ruoyi.system.mapper;
import java.util.List;
import com.ruoyi.system.domain.BFile;
/**
* 【请填写功能名称】Mapper接口
*
* @author ruoyi
* @date 2022-03-14
*/
public interface BFileMapper
{
/**
* 查询【请填写功能名称】
*
* @param id 【请填写功能名称】主键
* @return 【请填写功能名称】
*/
public BFile selectBFileById(Long id);
/**
* 查询【请填写功能名称】列表
*
* @param bFile 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
public List<BFile> selectBFileList(BFile bFile);
/**
* 新增【请填写功能名称】
*
* @param bFile 【请填写功能名称】
* @return 结果
*/
public int insertBFile(BFile bFile);
/**
* 修改【请填写功能名称】
*
* @param bFile 【请填写功能名称】
* @return 结果
*/
public int updateBFile(BFile bFile);
/**
* 删除【请填写功能名称】
*
* @param id 【请填写功能名称】主键
* @return 结果
*/
public int deleteBFileById(Long id);
/**
* 批量删除【请填写功能名称】
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteBFileByIds(Long[] ids);
}