package cn.stylefeng.guns.modular.bs.bomInfo.service;
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.bs.bomInfo.entity.BomInfo;
import cn.stylefeng.guns.modular.bs.bomInfo.model.params.BomInfoParam;
import cn.stylefeng.guns.modular.bs.bomInfo.model.result.BomInfoResult;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
*
* bom信息 服务类
*
*
* @author
* @since 2022-10-24
*/
public interface BomInfoService extends IService {
/**
* 新增
*
* @author
* @Date 2022-10-24
*/
void add(BomInfoParam param);
/**
* 删除
*
* @author
* @Date 2022-10-24
*/
void delete(BomInfoParam param);
/**
* 更新
*
* @author
* @Date 2022-10-24
*/
void update(BomInfoParam param);
/**
* 查询单条数据,Specification模式
*
* @author
* @Date 2022-10-24
*/
BomInfoResult findBySpec(BomInfoParam param);
/**
* 查询列表,Specification模式
*
* @author
* @Date 2022-10-24
*/
List findListBySpec(BomInfoParam param);
/**
* 查询分页数据,Specification模式
*
* @author
* @Date 2022-10-24
*/
LayuiPageInfo findPageBySpec(BomInfoParam param);
LayuiPageInfo kbListTable(BomInfoParam bomInfoParam);
LayuiPageInfo viewList(BomInfoParam bomInfoParam);
}