package com.ld.igds.wms.service;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.ld.igds.wms.data.WmsRequest;
|
import com.ld.igds.wms.data.WmsResponse;
|
|
/**
|
* 武汉黄陂军粮-立体库接口
|
* 业务接口分发
|
*
|
* @author czt
|
*/
|
public interface WmsService {
|
|
/**
|
* 获取接口编码
|
*
|
* @return
|
*/
|
public String getInterfaceId();
|
|
/**
|
* 业务执行
|
* @param req
|
* @return
|
* @throws Exception
|
*/
|
public WmsResponse execute(WmsRequest<JSONObject> req) throws Exception;
|
}
|