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