java110
2023-06-07 e050a2ab2fa176ebd0d2461681a41df34838c028
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 {
 
    /**
     * cmd 调用 处理类
     * @param reqJson 请求报文json
     * @return
     */
    ResponseEntity<String> cmd(String reqJson, Map<String, String> headers) throws Exception;
 
}