package com.java110.api.bmo.allocationStorehouseApply; import com.alibaba.fastjson.JSONObject; import com.java110.api.bmo.IApiBaseBMO; import com.java110.core.context.DataFlowContext; public interface IAllocationStorehouseApplyBMO extends IApiBaseBMO { /** * 添加调拨申请 * @param paramInJson * @param dataFlowContext * @return */ void addAllocationStorehouseApply(JSONObject paramInJson, DataFlowContext dataFlowContext); /** * 添加调拨申请信息 * * @param paramInJson 接口调用放传入入参 * @param dataFlowContext 数据上下文 * @return 订单服务能够接受的报文 */ void updateAllocationStorehouseApply(JSONObject paramInJson, DataFlowContext dataFlowContext); /** * 删除调拨申请 * * @param paramInJson 接口调用放传入入参 * @param dataFlowContext 数据上下文 * @return 订单服务能够接受的报文 */ void deleteAllocationStorehouseApply(JSONObject paramInJson, DataFlowContext dataFlowContext); }