wuxw
2019-02-10 97b45f5bb8c10cc6fe594f307cc521c63d0c02b4
java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
@@ -1,6 +1,5 @@
package com.java110.core.context;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.common.constant.ResponseConstant;
import com.java110.common.exception.InitDataFlowContextException;
@@ -18,14 +17,12 @@
public class BusinessServiceDataFlow extends AbstractDataFlowContext {
    private String bId;
    private Map<String,Object> paramOut;
    @Override
    public Orders getOrder() {
    public IOrders getOrder() {
        return this;
    }
@@ -53,7 +50,8 @@
            businesses.add(business);
            this.setCurrentBusiness(business);
            if (headerAll != null){
                this.headers.putAll(headerAll);
                this.requestCurrentHeaders.putAll(headerAll);
                this.requestHeaders.putAll(headerAll);
            }
        }catch (Exception e){
            throw new InitDataFlowContextException(ResponseConstant.RESULT_PARAM_ERROR,"初始化对象 BusinessServiceDataFlow 失败 "+reqInfo);