package com.java110.api.bmo.fee;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.api.bmo.IApiBaseBMO;
|
import com.java110.core.context.DataFlowContext;
|
import com.java110.dto.RoomDto;
|
import com.java110.dto.parking.ParkingSpaceDto;
|
|
/**
|
* @ClassName IFeeBMO
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/3/9 22:22
|
* @Version 1.0
|
* add by wuxw 2020/3/9
|
**/
|
public interface IFeeBMO extends IApiBaseBMO {
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void deleteFeeConfig(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void deleteFee(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
public JSONObject updateFee(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 修改费用信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject modifyFee(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加费用明细信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addFeeDetail(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加费用明细信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addFeePreDetail(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 修改费用信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject modifyPreFee(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
public JSONObject modifyTempCarInout(JSONObject reqJson, DataFlowContext context);
|
|
/**
|
* 添加费用明细信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addFeeTempDetail(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 修改费用信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject modifyTempFee(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addFeeConfig(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addFee(ParkingSpaceDto parkingSpaceDto, JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addRoomFee(RoomDto roomDto, JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加费用项信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void updateFeeConfig(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
}
|