aa51513
2021-05-15 d06fbb7626ca5c9e4e7a91ac06a6f2ae186c0f27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.java110.order.smo;
 
import com.java110.utils.exception.SMOException;
import org.springframework.http.ResponseEntity;
 
import java.util.Map;
 
public interface IOrderProcessServiceSMO {
 
    /**
     * 预生单
     * @param reqJson
     * @param headers
     * @return
     * @throws SMOException
     */
    public ResponseEntity<String> preService(String reqJson, Map<String, String> headers) throws SMOException;
 
    /**
     * 确认提交方法
     * @param reqJson
     * @param headers
     * @return
     * @throws SMOException
     */
    public ResponseEntity confirmService(String reqJson, Map<String, String> headers) throws SMOException;
 
}