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