package com.java110.api.bmo.tempCarFeeConfig;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.api.bmo.IApiBaseBMO;
|
import com.java110.core.context.DataFlowContext;
|
|
public interface ITempCarFeeConfigBMO extends IApiBaseBMO {
|
|
|
/**
|
* 添加临时车收费标准
|
* @param paramInJson
|
* @param dataFlowContext
|
* @return
|
*/
|
void addTempCarFeeConfig(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加临时车收费标准信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
void updateTempCarFeeConfig(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 删除临时车收费标准
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
void deleteTempCarFeeConfig(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
|
|
}
|