gojs流程图判断节点是否完整
gojs流程图判断节点是否完整 流程图 st=>start: start op=>subroutine: 节点1|past e=>end st->op->e 方法验证 if (StringUtil.isNotBlank(noteArray) && StringUtil.isNotBlank(linkArray) &&!noteArray.equals("[]")&& !linkArray.equals("[]") ) { //节点 List<ProcessNote> noteList = JsonUtils.parseArray(noteArray, ProcessNote.class); //节点网关连线 List<ProcessNoteGateway> gatewayList = JsonUtils.parseArray(linkArray, ProcessNoteGateway.class); //判断节点连线是否完整 boolean completeFlag = true; for(ProcessNote note:noteList){ //排除开始节点和结束节点 if(null==note.getCategory() || (null!=note.getCategory() && !note.getCategory().equals("start") && !note