package com.java110.api.bmo.machine;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.api.bmo.IApiBaseBMO;
|
import com.java110.core.context.DataFlowContext;
|
|
/**
|
* @ClassName IMachineBMO
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/3/9 22:46
|
* @Version 1.0
|
* add by wuxw 2020/3/9
|
**/
|
public interface IMachineBMO extends IApiBaseBMO {
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void deleteMachine(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addMachine(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加设备信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void updateMachine(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加设备信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void updateMachineState(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
}
|