懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.bs.productBom.mapper;
2
3 import com.jcdm.main.bs.productBom.domain.BsProductBomInfo;
4
5
6 import java.util.List;
7
8 /**
9  * 基础BOMMapper接口
10  * 
11  * @author yyt
12  * @date 2023-12-11
13  */
14 public interface BsProductBomInfoMapper 
15 {
16     /**
17      * 查询基础BOM
18      * 
19      * @param id 基础BOM主键
20      * @return 基础BOM
21      */
22     public BsProductBomInfo selectBsProductBomInfoById(Long id);
23
24     /**
25      * 查询基础BOM列表
26      * 
27      * @param bsProductBomInfo 基础BOM
28      * @return 基础BOM集合
29      */
30     public List<BsProductBomInfo> selectBsProductBomInfoList(BsProductBomInfo bsProductBomInfo);
31
32     /**
33      * 新增基础BOM
34      * 
35      * @param bsProductBomInfo 基础BOM
36      * @return 结果
37      */
38     public int insertBsProductBomInfo(BsProductBomInfo bsProductBomInfo);
39
40     /**
41      * 修改基础BOM
42      * 
43      * @param bsProductBomInfo 基础BOM
44      * @return 结果
45      */
46     public int updateBsProductBomInfo(BsProductBomInfo bsProductBomInfo);
47
48     /**
49      * 删除基础BOM
50      * 
51      * @param id 基础BOM主键
52      * @return 结果
53      */
54     public int deleteBsProductBomInfoById(Long id);
55
56     /**
57      * 批量删除基础BOM
58      * 
59      * @param ids 需要删除的数据主键集合
60      * @return 结果
61      */
62     public int deleteBsProductBomInfoByIds(Long[] ids);
63 }