懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.modular.zsx.bs.productBomChildInfo.service;
2
3 import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
4 import cn.stylefeng.guns.modular.zsx.bs.productBomChildInfo.entity.ProductBomChildInfo;
5 import cn.stylefeng.guns.modular.zsx.bs.productBomChildInfo.model.params.ProductBomChildInfoParam;
6 import cn.stylefeng.guns.modular.zsx.bs.productBomChildInfo.model.result.ProductBomChildInfoResult;
7 import com.baomidou.mybatisplus.extension.service.IService;
8
9 import java.util.List;
10
11 /**
12  * <p>
13  * 基础BOM 服务类
14  * </p>
15  *
16  * @author ruimin
17  * @since 2023-08-24
18  */
19 public interface ProductBomChildInfoService extends IService<ProductBomChildInfo> {
20
21     /**
22      * 新增
23      *
24      * @author ruimin
25      * @Date 2023-08-24
26      */
27     void add(ProductBomChildInfoParam param);
28
29     /**
30      * 删除
31      *
32      * @author ruimin
33      * @Date 2023-08-24
34      */
35     void delete(ProductBomChildInfoParam param);
36
37     /**
38      * 更新
39      *
40      * @author ruimin
41      * @Date 2023-08-24
42      */
43     void update(ProductBomChildInfoParam param);
44
45     /**
46      * 查询单条数据,Specification模式
47      *
48      * @author ruimin
49      * @Date 2023-08-24
50      */
51     ProductBomChildInfoResult findBySpec(ProductBomChildInfoParam param);
52
53     /**
54      * 查询列表,Specification模式
55      *
56      * @author ruimin
57      * @Date 2023-08-24
58      */
59     List<ProductBomChildInfoResult> findListBySpec(ProductBomChildInfoParam param);
60
61     /**
62      * 查询分页数据,Specification模式
63      *
64      * @author ruimin
65      * @Date 2023-08-24
66      */
67      LayuiPageInfo findPageBySpec(ProductBomChildInfoParam param);
68
69      void deleteBomChildByBomCode(String Bomcode);
70
71 }