wuxw
2020-01-11 ff5a0ebccba3225c4a44b47c61a16cdcfa66bd31
OrderService/src/main/java/com/java110/order/smo/IOrderServiceSMO.java
@@ -1,6 +1,6 @@
package com.java110.order.smo;
import com.java110.common.exception.SMOException;
import com.java110.utils.exception.SMOException;
import org.springframework.http.ResponseEntity;
import java.util.Map;
@@ -16,12 +16,12 @@
     * @param reqJson 请求报文json
     * @return
     */
    public ResponseEntity<String> service(String reqJson, Map<String, String> headers) throws SMOException;
     ResponseEntity<String> service(String reqJson, Map<String, String> headers) throws SMOException;
    /**
     * 接受业务系统通知消息
     * @param receiveJson 接受报文
     * @throws SMOException
     */
    public void receiveBusinessSystemNotifyMessage(String receiveJson) throws SMOException;
     void receiveBusinessSystemNotifyMessage(String receiveJson) throws SMOException;
}