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