wuxw
2020-02-11 dae308ece208c3810171ee6aa5a518ed8b0b6a56
1
2
3
4
5
6
7
8
9
10
11
package com.java110.app.smo.api;
 
import com.alibaba.fastjson.JSONObject;
import org.springframework.http.ResponseEntity;
 
import java.util.Map;
 
public interface IApiSMO {
 
    public ResponseEntity<String> doApi(String body, Map<String, String> headers);
}