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