java110
2020-03-09 dfd860facdce496b02c46e41b18a0dbd0f0e301a
1
2
3
4
5
6
7
8
9
10
package com.java110.front.smo.api;
 
import org.springframework.http.ResponseEntity;
 
import java.util.Map;
 
public interface IApiSMO {
 
    public ResponseEntity<String> doApi(String body, Map<String, String> headers);
}