package cn.stylefeng.guns.modular.zsx.bs.productBomInfo.service;
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.zsx.bs.productBomInfo.entity.ProductBomInfo;
import cn.stylefeng.guns.modular.zsx.bs.productBomInfo.model.params.ProductBomInfoParam;
import cn.stylefeng.guns.modular.zsx.bs.productBomInfo.model.result.ProductBomInfoResult;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
*
* 基础BOM 服务类
*
*
* @author ruimin
* @since 2023-08-24
*/
public interface ProductBomInfoService extends IService {
/**
* 新增
*
* @author ruimin
* @Date 2023-08-24
*/
void add(ProductBomInfoParam param);
/**
* 删除
*
* @author ruimin
* @Date 2023-08-24
*/
void delete(ProductBomInfoParam param);
/**
* 更新
*
* @author ruimin
* @Date 2023-08-24
*/
void update(ProductBomInfoParam param);
/**
* 查询单条数据,Specification模式
*
* @author ruimin
* @Date 2023-08-24
*/
ProductBomInfoResult findBySpec(ProductBomInfoParam param);
/**
* 查询列表,Specification模式
*
* @author ruimin
* @Date 2023-08-24
*/
List findListBySpec(ProductBomInfoParam param);
/**
* 查询分页数据,Specification模式
*
* @author ruimin
* @Date 2023-08-24
*/
LayuiPageInfo findPageBySpec(ProductBomInfoParam param);
}