java110
2021-11-14 862b72d394a4a0bc467deda2a0afdab43aa25c5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.java110.service.smo;
 
import com.java110.service.context.DataQuery;
import com.java110.utils.exception.BusinessException;
import com.java110.utils.exception.CmdException;
import com.java110.utils.exception.SMOException;
import org.springframework.http.ResponseEntity;
 
import java.util.Map;
 
/**
 * 公用查询处理
 * Created by wuxw on 2018/4/19.
 */
public interface ICmdServiceSMO {
 
    /**
     * 业务统一处理服务方法
     * @param reqJson 请求报文json
     * @return
     */
    ResponseEntity<String> cmd(String reqJson, Map<String, String> headers) throws Exception;
 
}