|
@@ -53,11 +53,11 @@ public class ActivitiController {
|
|
|
@ApiOperation(value = "启动流程")
|
|
|
@RequestMapping(value = "/startActivity", method = RequestMethod.POST)
|
|
|
public Result startActivity(@RequestParam(value = "processKey") String processKey) {
|
|
|
- Map<String, Object> map = new HashMap<>();
|
|
|
- map.put("userId", 1L);
|
|
|
- map.put("approveId", 2L);
|
|
|
- map.put("assigneeId", 3L);
|
|
|
- activitiService.startActivity(processKey, map);
|
|
|
+// Map<String, Object> map = new HashMap<>();
|
|
|
+// map.put("userId", 1L);
|
|
|
+// map.put("approveId", 2L);
|
|
|
+// map.put("assigneeId", 3L);
|
|
|
+ activitiService.startActivity(processKey, null);
|
|
|
return ResultUtil.ok();
|
|
|
}
|
|
|
|