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