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