Camunda 4、SpringBoot Camunda 流程定义的增删改查

一、SpringBoot 流程定义的操作与管理,bpmn.xml 部署后生成的流程定义

1、Controller 接口类:WorkflowDefinitionController

package com.fight.strive.sys.modules.camunda.controller;

import com.fight.strive.sys.modules.camunda.dto.WorkflowDefinitionDto;
import com.fight.strive.sys.modules.camunda.dto.WorkflowQueryDto;
import com.fight.strive.sys.modules.camunda.entity.WorkflowDefinitionEntity;
import com.fight.strive.sys.modules.camunda.service.WorkflowDefinitionService;
import com.fight.strive.sys.modules.request.annotation.RestGetMapping;
import com.fight.strive.sys.modules.request.annotation.RestPostMapping;
import com.fight.strive.sys.modules.request.dto.PageRequest;
import com.fight.strive.sys.modules.response.dto.PageData;
import com.fight.strive.sys.modules.response.dto.ResponseStatusDto;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.

猜你喜欢

转载自blog.csdn.net/zxstrive/article/details/109099096