Example #1
0
 /**
  * 启动流程
  *
  * @param procDefKey 流程定义KEY
  * @param businessTable 业务表表名
  * @param businessId 业务表编号
  */
 @RequestMapping(value = "start")
 @ResponseBody
 public String start(Act act, String table, String id, Model model) throws Exception {
   actTaskService.startProcess(
       act.getProcDefKey(), act.getBusinessId(), act.getBusinessTable(), act.getTitle());
   return "true"; // adminPath + "/act/task";
 }