懒羊羊
2023-09-19 a2805ec01e3a639713a418544dc65cb38a555fdd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package cn.stylefeng.guns.modular.rm.recipeManage.service;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.rm.recipeManage.entity.RecipeManage;
import cn.stylefeng.guns.modular.rm.recipeManage.model.params.RecipeManageParam;
import cn.stylefeng.guns.modular.rm.recipeManage.model.result.RecipeManageResult;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 配方管理 服务类
 * </p>
 *
 * @author ruimin
 * @since 2023-08-04
 */
public interface RecipeManageService extends IService<RecipeManage> {
 
    /**
     * 新增
     *
     * @author ruimin
     * @Date 2023-08-04
     */
    void add(RecipeManageParam param);
 
    /**
     * 删除
     *
     * @author ruimin
     * @Date 2023-08-04
     */
    void delete(RecipeManageParam param);
 
    /**
     * 更新
     *
     * @author ruimin
     * @Date 2023-08-04
     */
    void update(RecipeManageParam param);
 
    /**
     * 查询单条数据,Specification模式
     *
     * @author ruimin
     * @Date 2023-08-04
     */
    RecipeManageResult findBySpec(RecipeManageParam param);
 
    /**
     * 查询列表,Specification模式
     *
     * @author ruimin
     * @Date 2023-08-04
     */
    List<RecipeManageResult> findListBySpec(RecipeManageParam param);
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author ruimin
     * @Date 2023-08-04
     */
     LayuiPageInfo findPageBySpec(RecipeManageParam param);
 
    LayuiPageInfo viewList(RecipeManageParam recipeManageParam);
 
    String editItemView(RecipeManageParam recipeManageParam);
 
    Integer finish(RecipeManageParam recipeManageParam);
 
    void heavyLoad(RecipeManageParam recipeManageParam);
 
    void singleRowDelete(RecipeManageParam recipeManageParam);
}