37 changed files with 714 additions and 91 deletions
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<parent> |
||||
<artifactId>blade-service-api</artifactId> |
||||
<groupId>org.springblade</groupId> |
||||
<version>2.0.0.RC9</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>blade-flow-api</artifactId> |
||||
<name>${project.artifactId}</name> |
||||
<version>${bladex.project.version}</version> |
||||
<packaging>jar</packaging> |
||||
|
||||
|
||||
|
||||
</project> |
@ -0,0 +1,31 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.flowable.core.constant; |
||||
|
||||
/** |
||||
* 流程常量. |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface ProcessConstant { |
||||
|
||||
/** |
||||
* 请假流程标识 |
||||
*/ |
||||
String LEAVE_KEY = "Leave"; |
||||
|
||||
} |
@ -0,0 +1,120 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.flowable.core.entity; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 工作流通用实体类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Data |
||||
public class BladeFlow implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 任务编号 |
||||
*/ |
||||
private String taskId; |
||||
/** |
||||
* 任务名称 |
||||
*/ |
||||
private String taskName; |
||||
/** |
||||
* 任务定义Key |
||||
*/ |
||||
private String taskDefinitionKey; |
||||
/** |
||||
* 任务执行人编号 |
||||
*/ |
||||
private String assignee; |
||||
/** |
||||
* 任务执行人名称 |
||||
*/ |
||||
private String assigneeName; |
||||
|
||||
/** |
||||
* 历史任务结束时间 |
||||
*/ |
||||
private Date historyTaskEndTime; |
||||
private String executionId; |
||||
/** |
||||
* 流程实例ID |
||||
*/ |
||||
private String processInstanceId; |
||||
/** |
||||
* 流程信息 |
||||
*/ |
||||
private String processDefinitionId; |
||||
private String processDefinitionKey; |
||||
private String processDefinitionName; |
||||
private int processDefinitionVersion; |
||||
private String processDefinitionDesc; |
||||
private String processDefinitionDiagramResName; |
||||
private String processDefinitionResName; |
||||
|
||||
/** |
||||
* 已办任务流程实例ID 查看流程图会用到 |
||||
*/ |
||||
private String historyProcessInstanceId; |
||||
/** |
||||
* 流程实例是否结束(true:结束,false:未结束) |
||||
*/ |
||||
private String processIsFinished; |
||||
|
||||
/** |
||||
* 历史活动流程 |
||||
*/ |
||||
private String hisActInsActName; |
||||
/** |
||||
* 历史活动耗时 |
||||
*/ |
||||
private String hisActInsDuTime; |
||||
|
||||
/** |
||||
* 业务绑定Table |
||||
*/ |
||||
private String businessTable; |
||||
/** |
||||
* 业务绑定ID |
||||
*/ |
||||
private String businessId; |
||||
/** |
||||
* 任务状态 |
||||
*/ |
||||
private String status; |
||||
/** |
||||
* 任务意见 |
||||
*/ |
||||
private String comment; |
||||
/** |
||||
* 是否继续 |
||||
*/ |
||||
private String isPass; |
||||
/** |
||||
* 开始查询日期 |
||||
*/ |
||||
private Date beginDate; |
||||
/** |
||||
* 结束查询日期 |
||||
*/ |
||||
private Date endDate; |
||||
} |
@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.flowable.core.feign; |
||||
|
||||
import org.springblade.core.launch.constant.AppConstant; |
||||
import org.springblade.flowable.core.entity.BladeFlow; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 工作流远程调用接口. |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@FeignClient( |
||||
value = AppConstant.APPLICATION_FLOW_NAME, |
||||
fallback = IFlowClientFallback.class |
||||
) |
||||
public interface IFlowClient { |
||||
|
||||
String API_PREFIX = "/client"; |
||||
String START_PROCESS_INSTANCE_BY_Id = API_PREFIX + "start-process-instance-by-id"; |
||||
|
||||
/** |
||||
* 开启流程 |
||||
* |
||||
* @param processDefinitionId 流程id |
||||
* @param businessKey 业务key |
||||
* @param variables 参数 |
||||
* @return BladeFlow |
||||
*/ |
||||
@PostMapping(START_PROCESS_INSTANCE_BY_Id) |
||||
BladeFlow startProcessInstanceById(@RequestParam("processDefinitionId") String processDefinitionId, @RequestParam("businessKey") String businessKey, @RequestBody Map<String, Object> variables); |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.flowable.core.feign; |
||||
|
||||
import org.springblade.flowable.core.entity.BladeFlow; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 流程远程调用失败处理类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Component |
||||
public class IFlowClientFallback implements IFlowClient { |
||||
@Override |
||||
public BladeFlow startProcessInstanceById(String processDefinitionId, String businessKey, Map<String, Object> variables) { |
||||
return null; |
||||
} |
||||
} |
@ -0,0 +1,69 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.flowable.core.utils; |
||||
|
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springblade.core.tool.utils.StringUtil; |
||||
import org.springblade.flowable.core.constant.ProcessConstant; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 工作流工具类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public class FlowUtil { |
||||
|
||||
/** |
||||
* 定义流程key对应的表名 |
||||
*/ |
||||
private final static Map<String, String> BUSINESS_TABLE = new HashMap<>(); |
||||
|
||||
/** |
||||
* 初始化加载 |
||||
*/ |
||||
static { |
||||
BUSINESS_TABLE.put(ProcessConstant.LEAVE_KEY, "blade_process_leave"); |
||||
} |
||||
|
||||
/** |
||||
* 通过流程key获取业务表名 |
||||
* |
||||
* @param key 流程key |
||||
*/ |
||||
public static String getBusinessTable(String key) { |
||||
String businessTable = BUSINESS_TABLE.get(key); |
||||
if (Func.isEmpty(businessTable)) { |
||||
throw new RuntimeException("流程启动失败,未找到相关业务表"); |
||||
} |
||||
return businessTable; |
||||
} |
||||
|
||||
/** |
||||
* 获取业务标识 |
||||
* |
||||
* @param businessTable 业务表 |
||||
* @param businessId 业务表主键 |
||||
* @return businessKey |
||||
*/ |
||||
public static String getBusinessKey(String businessTable, String businessId) { |
||||
return StringUtil.format("{}:{}", businessTable, businessId); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,60 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.desk.controller; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.common.cache.CacheNames; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.desk.entity.ProcessLeave; |
||||
import org.springblade.desk.service.ILeaveService; |
||||
import org.springframework.web.bind.annotation.*; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 控制器 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@ApiIgnore |
||||
@RestController |
||||
@RequestMapping("/process/leave") |
||||
@AllArgsConstructor |
||||
public class LeaveController extends BladeController implements CacheNames { |
||||
|
||||
private ILeaveService leaveService; |
||||
|
||||
/** |
||||
* 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
public R<ProcessLeave> detail(ProcessLeave leave) { |
||||
ProcessLeave detail = leaveService.getOne(Condition.getQueryWrapper(leave)); |
||||
return R.data(detail); |
||||
} |
||||
|
||||
/** |
||||
* 新增或修改 |
||||
*/ |
||||
@PostMapping("/start") |
||||
public R start(@RequestBody ProcessLeave leave) { |
||||
return R.status(leaveService.start(leave)); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,67 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.desk.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* 请假流程实体类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Data |
||||
@TableName("blade_process_leave") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ProcessLeave extends BaseEntity { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 流程定义id |
||||
*/ |
||||
private String processId; |
||||
/** |
||||
* 流程实例id |
||||
*/ |
||||
private String instanceId; |
||||
/** |
||||
* 请假开始时间 |
||||
*/ |
||||
private LocalDateTime startTime; |
||||
/** |
||||
* 请假结束时间 |
||||
*/ |
||||
private LocalDateTime endTime; |
||||
/** |
||||
* 请假理由 |
||||
*/ |
||||
private String reason; |
||||
/** |
||||
* 批复 |
||||
*/ |
||||
private String comment; |
||||
/** |
||||
* 流程申请时间 |
||||
*/ |
||||
private LocalDateTime applyTime; |
||||
|
||||
} |
@ -0,0 +1,29 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.desk.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import org.springblade.desk.entity.ProcessLeave; |
||||
|
||||
/** |
||||
* Mapper 接口 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface LeaveMapper extends BaseMapper<ProcessLeave> { |
||||
|
||||
} |
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.desk.mapper.LeaveMapper"> |
||||
|
||||
|
||||
</mapper> |
@ -0,0 +1,37 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.desk.service; |
||||
|
||||
import org.springblade.core.mp.base.BaseService; |
||||
import org.springblade.desk.entity.ProcessLeave; |
||||
|
||||
/** |
||||
* 服务类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public interface ILeaveService extends BaseService<ProcessLeave> { |
||||
|
||||
/** |
||||
* 开启流程 |
||||
* |
||||
* @param leave 请假实体 |
||||
* @return boolean |
||||
*/ |
||||
boolean start(ProcessLeave leave); |
||||
|
||||
} |
@ -0,0 +1,71 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.desk.service.impl; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springblade.core.secure.utils.SecureUtil; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springblade.desk.entity.ProcessLeave; |
||||
import org.springblade.desk.mapper.LeaveMapper; |
||||
import org.springblade.desk.service.ILeaveService; |
||||
import org.springblade.flowable.core.constant.ProcessConstant; |
||||
import org.springblade.flowable.core.entity.BladeFlow; |
||||
import org.springblade.flowable.core.feign.IFlowClient; |
||||
import org.springblade.flowable.core.utils.FlowUtil; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.time.Duration; |
||||
import java.time.LocalDateTime; |
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 服务实现类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class LeaveServiceImpl extends BaseServiceImpl<LeaveMapper, ProcessLeave> implements ILeaveService { |
||||
|
||||
private IFlowClient flowClient; |
||||
|
||||
@Override |
||||
public boolean start(ProcessLeave leave) { |
||||
String businessTable = FlowUtil.getBusinessTable(ProcessConstant.LEAVE_KEY); |
||||
Map<String, Object> variables = new HashMap<>(16); |
||||
if (Func.isEmpty(leave.getId())) { |
||||
// 保存leave
|
||||
leave.setApplyTime(LocalDateTime.now()); |
||||
save(leave); |
||||
// 启动流程
|
||||
variables.put("taskUser", SecureUtil.getUser().getUserId()); |
||||
variables.put("days", Duration.between(leave.getEndTime(), leave.getStartTime()).toDays()); |
||||
BladeFlow bladeFlow = flowClient.startProcessInstanceById(leave.getProcessId(), FlowUtil.getBusinessKey(businessTable, String.valueOf(leave.getId())), variables); |
||||
log.debug("流程已启动,流程ID:" + bladeFlow.getProcessInstanceId()); |
||||
leave.setInstanceId(bladeFlow.getProcessInstanceId()); |
||||
updateById(leave); |
||||
} else { |
||||
|
||||
updateById(leave); |
||||
} |
||||
return true; |
||||
} |
||||
} |
@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.flowable.business.feign; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import org.flowable.engine.RuntimeService; |
||||
import org.flowable.engine.TaskService; |
||||
import org.flowable.engine.runtime.ProcessInstance; |
||||
import org.springblade.flowable.core.entity.BladeFlow; |
||||
import org.springblade.flowable.core.feign.IFlowClient; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 流程远程调用实现类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class FlowClient implements IFlowClient { |
||||
|
||||
private RuntimeService runtimeService; |
||||
|
||||
private TaskService taskService; |
||||
|
||||
@Override |
||||
@PostMapping(START_PROCESS_INSTANCE_BY_Id) |
||||
public BladeFlow startProcessInstanceById(String processDefinitionId, String businessKey, @RequestBody Map<String, Object> variables) { |
||||
ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinitionId, businessKey, variables); |
||||
BladeFlow flow = new BladeFlow(); |
||||
flow.setProcessInstanceId(processInstance.getId()); |
||||
return flow; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue