/** * 是否跳转操作页面 * * @param operateType 操作类型 * @return */ public static boolean isTypeModify(RecvMainParamVo params) { boolean flag = false; String steplabel = params.getProcessParamValue("steplabel"); if (RecvMainStepConstants.STEPNAME_MODIFY.equals(steplabel)) { flag = true; } return flag; }
/** * 是否跳转更新页面 * * @param operateType 操作类型 * @return */ public static boolean isTypeUpdate(RecvMainParamVo params) { boolean flag = false; String steplabel = params.getProcessParamValue("steplabel"); if (RecvMainStepConstants.STEPNAME_GET_SERIALNO.equals(steplabel)) { flag = true; } return flag; }