|
1
2
|
package com.huaheng.api.WAYBILLNO.service;
|
|
3
4
|
import com.huaheng.pc.config.KDCertification.domain.KDCertification;
|
|
5
6
7
8
9
10
11
12
13
14
15
16
|
import java.util.Map;
public interface KuaidiService {
boolean callbackVerify(Map<String, String> callbackData) throws Exception;
String authorize(String state) throws Exception;
String accessToken(String code) throws Exception;
String refreshToken(String refreshToken) throws Exception;
|
|
17
18
|
String refreshTokenByClass(KDCertification kdCertification) throws Exception;
|
|
19
20
21
22
23
24
25
26
|
String send(String accessToken, String orderData) throws Exception;
String update(String accessToken, String orderData) throws Exception;
String quickPrint(String accessToken, String printList);
String autoPrint(String accessToken, String printList) throws Exception;
}
|