提交 | 用户 | 时间
|
1ac2bc
|
1 |
package cn.stylefeng.guns.workflow.modular.service; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.workflow.modular.model.ActModel; |
|
4 |
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
5 |
|
|
6 |
import java.util.Map; |
|
7 |
|
|
8 |
/** |
|
9 |
* 模型管理接口 |
|
10 |
* |
|
11 |
* @author fengshuonan |
|
12 |
* @Date 2019/8/5 22:49 |
|
13 |
*/ |
|
14 |
public interface ActModelService { |
|
15 |
|
|
16 |
/** |
|
17 |
* 列表 |
|
18 |
* |
|
19 |
* @author fengshuonan |
|
20 |
* @Date 2019/8/6 20:51 |
|
21 |
*/ |
|
22 |
Page<Map<String, Object>> list(String keywords); |
|
23 |
|
|
24 |
/** |
|
25 |
* 通过id获取数据 |
|
26 |
* |
|
27 |
* @author fengshuonan |
|
28 |
* @Date 2019/8/6 20:51 |
|
29 |
*/ |
|
30 |
Map<String, Object> findById(String modelId); |
|
31 |
|
|
32 |
/** |
|
33 |
* 修改 |
|
34 |
* |
|
35 |
* @author fengshuonan |
|
36 |
* @Date 2019/8/6 20:51 |
|
37 |
*/ |
|
38 |
void edit(ActModel actModel); |
|
39 |
|
|
40 |
} |
|
41 |
|