提交 | 用户 | 时间
|
fd2207
|
1 |
package com.jcdm.main.bs.formula.mapper; |
懒 |
2 |
|
|
3 |
import java.util.List; |
|
4 |
import com.jcdm.main.bs.formula.domain.BsFormulaInfo; |
|
5 |
|
|
6 |
/** |
|
7 |
* 配方配置Mapper接口 |
|
8 |
* |
|
9 |
* @author ruimin |
|
10 |
* @date 2023-12-26 |
|
11 |
*/ |
|
12 |
public interface BsFormulaInfoMapper |
|
13 |
{ |
|
14 |
/** |
|
15 |
* 查询配方配置 |
|
16 |
* |
|
17 |
* @param id 配方配置主键 |
|
18 |
* @return 配方配置 |
|
19 |
*/ |
|
20 |
public BsFormulaInfo selectBsFormulaInfoById(Long id); |
|
21 |
|
|
22 |
/** |
|
23 |
* 查询配方配置列表 |
|
24 |
* |
|
25 |
* @param bsFormulaInfo 配方配置 |
|
26 |
* @return 配方配置集合 |
|
27 |
*/ |
|
28 |
public List<BsFormulaInfo> selectBsFormulaInfoList(BsFormulaInfo bsFormulaInfo); |
|
29 |
|
|
30 |
/** |
|
31 |
* 新增配方配置 |
|
32 |
* |
|
33 |
* @param bsFormulaInfo 配方配置 |
|
34 |
* @return 结果 |
|
35 |
*/ |
|
36 |
public int insertBsFormulaInfo(BsFormulaInfo bsFormulaInfo); |
|
37 |
|
|
38 |
/** |
|
39 |
* 修改配方配置 |
|
40 |
* |
|
41 |
* @param bsFormulaInfo 配方配置 |
|
42 |
* @return 结果 |
|
43 |
*/ |
|
44 |
public int updateBsFormulaInfo(BsFormulaInfo bsFormulaInfo); |
|
45 |
|
|
46 |
/** |
|
47 |
* 删除配方配置 |
|
48 |
* |
|
49 |
* @param id 配方配置主键 |
|
50 |
* @return 结果 |
|
51 |
*/ |
|
52 |
public int deleteBsFormulaInfoById(Long id); |
|
53 |
|
|
54 |
/** |
|
55 |
* 批量删除配方配置 |
|
56 |
* |
|
57 |
* @param ids 需要删除的数据主键集合 |
|
58 |
* @return 结果 |
|
59 |
*/ |
|
60 |
public int deleteBsFormulaInfoByIds(Long[] ids); |
|
61 |
} |