YYC
2023-06-15 a8da7c463224b9a5bc4628197afe4d9f7d05361c
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
package com.ld.igds.three.service;
 
import com.alibaba.fastjson.JSONObject;
import com.ld.igds.three.data.ThreeResponse;
import com.ld.igds.three.param.ThreeRequest;
 
/**
 * 三维接口业务服务
 * @author chen
 */
public interface ThreeService {
 
    /**
     * 获取接口编码
     * @return
     */
    public String getInterfaceId();
 
    /**
     * 业务执行
     * @param req
     * @return
     * @throws Exception
     */
    public ThreeResponse<Object> execute(ThreeRequest<JSONObject> req) throws Exception;
}