//状态
UUID statId = null;
if (excelValueNum.get("状态")!=null) {
String statIdStr = CynthiaUtil.getValue(row, excelValueNum.get("状态"));
if (statIdStr != null && statIdStr.length() >0) {
Stat stat = flow.getStat(statIdStr);
if (stat == null) {
failCount ++;
errorInfo = new ErrorInfo() ;
errorInfo.setErrorDescription("状态不存在");
errorInfo.setErrorRowNum(j);
errorInfo.setErrorColumnName("状态");
errorInfoList.add(errorInfo);
continue;
}else {
statId = stat.getId();
}
}
}
boolean isEndStat = isEndStat(flow, statId);