田源
2025-01-16 a13255b4129ee8a7a7b7e1ecd8e02dd2c78f7c17
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
package com.vci.web.service;
 
import com.vci.corba.wf.data.ProcessCategoryInfo;
import com.vci.starter.web.pagemodel.BaseQueryObject;
import com.vci.starter.web.pagemodel.DataGrid;
 
import java.util.List;
 
/**
 * 流程服务
 * @author ludc
 * @date 2025/1/14 17:28
 */
public interface WebFlowServiceI {
 
    /**
     * 流程分类全查询
     * @param parentId
     * @return
     * @throws Exception
     */
    List<ProcessCategoryInfo> getProcessCategories(String parentId) throws Exception;
 
    /**
     * 流程分类分页查询
     * @param baseQueryObject
     * @return
     */
    DataGrid<ProcessCategoryInfo> getProcessCategoriesByPage(BaseQueryObject baseQueryObject) throws Exception;
 
    /**
     * 保存流程分类
     * @param category
     * @return
     */
    String saveProcessCategory(ProcessCategoryInfo category) throws Exception;
 
    /**
     * 修改流程分类
     * @param category
     * @return
     */
    boolean updateProcessCategory(ProcessCategoryInfo category) throws Exception;
 
    /**
     * 删除流程分类
     * @param id
     * @return
     * @throws Exception
     */
    boolean deleteProcessCategory(String id) throws Exception;
 
}