czt
2024-07-13 bd01ba57ed8526a0ee94a50e1f52034251bb54f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
}