package com.java110.api.bmo.applicationKey;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.api.bmo.IApiBaseBMO;
|
import com.java110.core.context.DataFlowContext;
|
import com.java110.dto.community.CommunityDto;
|
import com.java110.dto.owner.OwnerDto;
|
|
/**
|
* @ClassName IAppBMO
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/3/9 19:58
|
* @Version 1.0
|
* add by wuxw 2020/3/9
|
**/
|
public interface IApplicationKeyBMO extends IApiBaseBMO {
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void deleteApplicationKey(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addOwnerPhoto(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
public void addMsg(JSONObject paramInJson, DataFlowContext context);
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void editApplicationKeyPhoto(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加钥匙申请信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void updateApplicationKey(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
*/
|
public void addApplicationKey(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addApplicationVisitKey(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加小区信息
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addMachineRecord(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addPhoto(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
/**
|
* 添加小区楼信息
|
* <p>
|
* * name:'',
|
* * age:'',
|
* * link:'',
|
* * sex:'',
|
* * remark:''
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @return 订单服务能够接受的报文
|
*/
|
public void addMember(JSONObject paramInJson,DataFlowContext context);
|
/**
|
* 添加物业费用
|
*
|
* @param paramInJson 接口调用放传入入参
|
* @param dataFlowContext 数据上下文
|
* @return 订单服务能够接受的报文
|
*/
|
public void addOwnerKeyPhoto(JSONObject paramInJson, DataFlowContext dataFlowContext);
|
|
}
|