wujian
2024-03-22 0ce25f34a0d627a5cc0d073d24b8c3e569feac15
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.bs.productBom.service;
2
0ce25f 3 import com.baomidou.mybatisplus.extension.service.IService;
e57a89 4 import com.jcdm.main.bs.productBom.domain.BsProductBomInfo;
5
6 import java.util.List;
7
8 /**
9  * 基础BOMService接口
10  * 
11  * @author yyt
12  * @date 2023-12-11
13  */
0ce25f 14 public interface IBsProductBomInfoService extends IService<BsProductBomInfo>
e57a89 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 ids 需要删除的基础BOM主键集合
52      * @return 结果
53      */
54     public int deleteBsProductBomInfoByIds(Long[] ids);
55
56     /**
57      * 删除基础BOM信息
58      * 
59      * @param id 基础BOM主键
60      * @return 结果
61      */
62     public int deleteBsProductBomInfoById(Long id);
63 }