潘志宝
9 天以前 9d5be382e52f9ac57199d5ef75cc23f925a4cdb0
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.service.definition;
H 2
3 import com.iailab.framework.common.pojo.PageResult;
4 import com.iailab.module.bpm.controller.admin.definition.vo.category.BpmCategoryPageReqVO;
5 import com.iailab.module.bpm.controller.admin.definition.vo.category.BpmCategorySaveReqVO;
6 import com.iailab.module.bpm.dal.dataobject.definition.BpmCategoryDO;
7
8 import javax.validation.Valid;
9 import java.util.Collection;
10 import java.util.List;
11 import java.util.Map;
12
13 import static com.iailab.framework.common.util.collection.CollectionUtils.convertMap;
14
15 /**
16  * BPM 流程分类 Service 接口
17  *
18  * @author iailab
19  */
20 public interface BpmCategoryService {
21
22     /**
23      * 创建流程分类
24      *
25      * @param createReqVO 创建信息
26      * @return 编号
27      */
28     Long createCategory(@Valid BpmCategorySaveReqVO createReqVO);
29
30     /**
31      * 更新流程分类
32      *
33      * @param updateReqVO 更新信息
34      */
35     void updateCategory(@Valid BpmCategorySaveReqVO updateReqVO);
36
37     /**
38      * 删除流程分类
39      *
40      * @param id 编号
41      */
42     void deleteCategory(Long id);
43
44     /**
45      * 获得流程分类
46      *
47      * @param id 编号
48      * @return BPM 流程分类
49      */
50     BpmCategoryDO getCategory(Long id);
51
52     /**
53      * 获得流程分类分页
54      *
55      * @param pageReqVO 分页查询
56      * @return 流程分类分页
57      */
58     PageResult<BpmCategoryDO> getCategoryPage(BpmCategoryPageReqVO pageReqVO);
59
60     /**
61      * 获得流程分类 Map,基于指定编码
62      *
63      * @param codes 编号数组
64      * @return 流程分类 Map
65      */
66     default Map<String, BpmCategoryDO> getCategoryMap(Collection<String> codes) {
67         return convertMap(getCategoryListByCode(codes), BpmCategoryDO::getCode);
68     }
69
70     /**
71      * 获得流程分类列表,基于指定编码
72      *
73      * @return 流程分类列表
74      */
75     List<BpmCategoryDO> getCategoryListByCode(Collection<String> codes);
76
77     /**
78      * 获得流程分类列表,基于指定状态
79      *
80      * @param status 状态
81      * @return 流程分类列表
82      */
83     List<BpmCategoryDO> getCategoryListByStatus(Integer status);
84
bb2880 85     /**
H 86      * 批量更新流程分类的排序:每个分类的 sort 值,从 0 开始递增
87      *
88      * @param ids 分类编号列表
89      */
90     void updateCategorySortBatch(List<Long> ids);
91
e7c126 92 }