package com.java110.api.bmo.inspection;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.api.bmo.IApiBaseBMO;
|
import com.java110.core.context.DataFlowContext;
|
|
/**
|
* @ClassName IInspectionBMO
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/3/9 22:39
|
* @Version 1.0
|
* add by wuxw 2020/3/9
|
**/
|
public interface IInspectionBMO extends IApiBaseBMO {
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void deleteInspectionPlan(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addInspectionPlan(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加巡检计划信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void updateInspectionPlan(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加设备信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void updateInspectionPlanState(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject deleteInspectionPoint(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addInspectionPoint(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加巡检点信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject updateInspectionPoint(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject deleteInspectionRoute(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject deleteInspectionRoutePoint(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addInspectionRoute(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject addInspectionRoute(JSONObject paramInJson, DataFlowContext dataFlowContext, int index);
|
|
/**
|
* 添加巡检路线信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public JSONObject updateInspectionRoute(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
}
|