sfd
2025-05-21 7c266bff815ebed897e51f401ef5987629d77c44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.aps.core.service;
 
import java.util.List;
import com.aps.core.domain.ApsBom;
 
/**
 * BOM数据管理Service接口
 * 
 * @author zhl
 * @date 2025-04-22
 */
public interface IApsBomService 
{
    /**
     * 查询BOM数据管理
     * 
     * @param id BOM数据管理主键
     * @return BOM数据管理
     */
    public ApsBom selectApsBomById(Long id);
 
    /**
     * 查询BOM数据管理列表
     * 
     * @param apsBom BOM数据管理
     * @return BOM数据管理集合
     */
    public List<ApsBom> selectApsBomList(ApsBom apsBom);
 
    /**
     * 新增BOM数据管理
     * 
     * @param apsBom BOM数据管理
     * @return 结果
     */
    public int insertApsBom(ApsBom apsBom);
 
    /**
     * 修改BOM数据管理
     * 
     * @param apsBom BOM数据管理
     * @return 结果
     */
    public int updateApsBom(ApsBom apsBom);
 
    /**
     * 批量删除BOM数据管理
     * 
     * @param ids 需要删除的BOM数据管理主键集合
     * @return 结果
     */
    public int deleteApsBomByIds(Long[] ids);
 
    /**
     * 删除BOM数据管理信息
     * 
     * @param id BOM数据管理主键
     * @return 结果
     */
    public int deleteApsBomById(Long id);
 
    List<ApsBom> selectApsBomLineList(String plant, String itemNumber);
 
    List<ApsBom> selectRdsBomLineList(String plant, String itemNumber);
}