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);
|
}
|