hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
f47bd7 1 package com.billion.main.bs.service;
H 2
3 import com.baomidou.mybatisplus.extension.service.IService;
4 import com.billion.main.bs.domain.BsBomInfo;
5
6 import java.util.List;
7
8 /**
9  * 基础BOMService接口
10  * 
11  * @author HDY
12  * @date 2024-11-25
13  */
14 public interface IBsBomInfoService extends IService<BsBomInfo>
15 {
16     /**
17      * 查询基础BOM
18      * 
19      * @param id 基础BOM主键
20      * @return 基础BOM
21      */
22     public BsBomInfo selectBsBomInfoById(Long id);
23
24     /**
25      * 查询基础BOM列表
26      * 
27      * @param bsBomInfo 基础BOM
28      * @return 基础BOM集合
29      */
30     public List<BsBomInfo> selectBsBomInfoList(BsBomInfo bsBomInfo);
31
32     /**
33      * 新增基础BOM
34      * 
35      * @param bsBomInfo 基础BOM
36      * @return 结果
37      */
3d0e64 38     public void insertBsBomInfo(BsBomInfo bsBomInfo);
f47bd7 39
H 40     /**
41      * 修改基础BOM
42      * 
43      * @param bsBomInfo 基础BOM
44      * @return 结果
45      */
46     public int updateBsBomInfo(BsBomInfo bsBomInfo);
47
48     /**
49      * 批量删除基础BOM
50      * 
51      * @param ids 需要删除的基础BOM主键集合
52      * @return 结果
53      */
54     public int deleteBsBomInfoByIds(Long[] ids);
55
56     /**
57      * 删除基础BOM信息
58      * 
59      * @param id 基础BOM主键
60      * @return 结果
61      */
62     public int deleteBsBomInfoById(Long id);
7737ed 63
H 64     void insertBatch(List<BsBomInfo> confList);
f47bd7 65 }