春风项目四线(合箱线、总装线)
wujian
2024-01-18 83923ea389a172c1cf3d9cd7a3628d3692e9feaf
提交 | 用户 | 时间
fd2207 1 package com.jcdm.main.bs.formulaChild.mapper;
2
83923e 3 import com.jcdm.main.bs.formulaChild.Query.ProductProcessQuery;
fd2207 4 import com.jcdm.main.bs.formulaChild.domain.BsFormulaChildInfo;
83923e 5
W 6 import java.util.List;
fd2207 7
8 /**
9  * 配方配置子信息Mapper接口
10  * 
11  * @author ruimin
12  * @date 2023-12-26
13  */
83923e 14
W 15 public interface BsFormulaChildInfoMapper
fd2207 16 {
17     /**
18      * 查询配方配置子信息
19      * 
20      * @param id 配方配置子信息主键
21      * @return 配方配置子信息
22      */
23     public BsFormulaChildInfo selectBsFormulaChildInfoById(Long id);
24
25     /**
26      * 查询配方配置子信息列表
27      * 
28      * @param bsFormulaChildInfo 配方配置子信息
29      * @return 配方配置子信息集合
30      */
31     public List<BsFormulaChildInfo> selectBsFormulaChildInfoList(BsFormulaChildInfo bsFormulaChildInfo);
32
33     /**
34      * 新增配方配置子信息
35      * 
36      * @param bsFormulaChildInfo 配方配置子信息
37      * @return 结果
38      */
39     public int insertBsFormulaChildInfo(BsFormulaChildInfo bsFormulaChildInfo);
40
41     /**
42      * 修改配方配置子信息
43      * 
44      * @param bsFormulaChildInfo 配方配置子信息
45      * @return 结果
46      */
47     public int updateBsFormulaChildInfo(BsFormulaChildInfo bsFormulaChildInfo);
48
49     /**
50      * 删除配方配置子信息
51      * 
52      * @param id 配方配置子信息主键
53      * @return 结果
54      */
55     public int deleteBsFormulaChildInfoById(Long id);
56
57     /**
58      * 批量删除配方配置子信息
59      * 
60      * @param ids 需要删除的数据主键集合
61      * @return 结果
62      */
63     public int deleteBsFormulaChildInfoByIds(Long[] ids);
83923e 64
W 65
66     public List<BsFormulaChildInfo> getProductProcess(ProductProcessQuery productProcessQuery);
fd2207 67 }