xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
package com.dl.workflow.service;
 
import com.dl.common.core.domain.PageQuery;
import com.dl.common.core.page.TableDataInfo;
import com.dl.flowable.core.domain.ProcessQuery;
import com.dl.workflow.domain.vo.WfDeployVo;
 
import java.util.List;
 
/**
 * @author KonBAI
 * @createTime 2022/6/30 9:03
 */
public interface IWfDeployService {
 
    TableDataInfo<WfDeployVo> queryPageList(ProcessQuery processQuery, PageQuery pageQuery);
 
    TableDataInfo<WfDeployVo> queryPublishList(String processKey, PageQuery pageQuery);
 
    void updateState(String definitionId, String stateCode);
 
    String queryBpmnXmlById(String definitionId);
 
    void deleteByIds(List<String> deployIds);
}