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