多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 启动流程 前台: ![](https://box.kancloud.cn/d8de76cf82f8abf043e540d41aeeda18_577x309.png) ![](https://box.kancloud.cn/2a55d6f8385807c6cd8a8e05b8c0daf7_577x345.png) 传入后台,后台接受transType启动流程 ~~~ @Override public Boolean applyExamine(CustomerPricing model, String transType) { TaskRequest taskRequest = new TaskRequest(); // 设置流程定义编码 taskRequest.setTransType(transType); String product = model.getProduct(); // 设置产品编码 taskRequest.setVar1(product); Long flowId = null; try { flowId = workFlowService.createProcess(taskRequest).getLflowid(); if (flowId != null) { model.setFlowId(Integer.valueOf(flowId.toString())); baseMapper.updateById(model); return true; } } catch (Exception e) { e.printStackTrace(); return false; } return false; ~~~