hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
fb3b3e 1 package com.billion.main.bs.mapper;
2
3
4 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
5 import com.billion.main.bs.domain.BsFormulaChildInfo;
6
7 import java.util.List;
8
9 /**
10  * 配方配置子信息Mapper接口
11  * 
12  * @author Billion
13  * @date 2024-11-26
14  */
15 public interface BsFormulaChildInfoMapper extends BaseMapper<BsFormulaChildInfo>
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);
64 }