feat: 节点表单信息配置

This commit is contained in:
tony
2022-12-19 14:21:47 +08:00
parent 682592fcdf
commit 3a61651a98
10 changed files with 1248 additions and 1303 deletions

View File

@@ -49,6 +49,11 @@ public class SysFormController extends BaseController {
return getDataTable(list);
}
@GetMapping("/formList")
public AjaxResult formList(SysForm sysForm) {
List<SysForm> list = SysFormService.selectSysFormList(sysForm);
return AjaxResult.success(list);
}
/**
* 导出流程表单列表
*/

View File

@@ -26,6 +26,8 @@ public class FlowTaskListener implements TaskListener{
log.info("任务监听器:{}", JSON.toJSONString(delegateTask));
// TODO 获取事件类型 delegateTask.getEventName(),可以通过监听器给任务执行人发送相应的通知消息
}
}