package com.huaheng.api.WAYBILLNO.service; import com.huaheng.pc.config.KDCertification.domain.KDCertification; 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; String refreshTokenByClass(KDCertification kdCertification) throws Exception; 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; }