工作流起始接口以及动态获取view功能

This commit is contained in:
pixel
2020-11-10 17:39:29 +08:00
parent b12bbc74ff
commit f4709f00ab
27 changed files with 874 additions and 368 deletions

View File

@@ -97,4 +97,20 @@ export const getWorkflowProcessList = (params) => {
method: 'get',
params
})
}
// @Tags WorkflowProcess
// @Summary 用id查询工作流步骤
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body model.WorkflowProcess true "用id查询WorkflowProcess"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
// @Router /workflowProcess/findWorkflowCreateStep [get]
export const findWorkflowCreateStep = (params) => {
return service({
url: "/workflowProcess/findWorkflowCreateStep",
method: 'get',
params
})
}