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