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