Skip to content

Commit 52c597a

Browse files
committed
🎨 移除无用导入代码
1 parent 7bcb04a commit 52c597a

File tree

1 file changed

+2
-22
lines changed

1 file changed

+2
-22
lines changed

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/impl/WxMaImmediateDeliveryServiceImpl.java

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,12 @@
22

33
import cn.binarywang.wx.miniapp.api.WxMaImmediateDeliveryService;
44
import cn.binarywang.wx.miniapp.api.WxMaService;
5-
import cn.binarywang.wx.miniapp.bean.delivery.AbnormalConfirmRequest;
6-
import cn.binarywang.wx.miniapp.bean.delivery.AbnormalConfirmResponse;
7-
import cn.binarywang.wx.miniapp.bean.delivery.AddOrderRequest;
8-
import cn.binarywang.wx.miniapp.bean.delivery.AddOrderResponse;
9-
import cn.binarywang.wx.miniapp.bean.delivery.BindAccountResponse;
10-
import cn.binarywang.wx.miniapp.bean.delivery.CancelOrderRequest;
11-
import cn.binarywang.wx.miniapp.bean.delivery.CancelOrderResponse;
12-
import cn.binarywang.wx.miniapp.bean.delivery.FollowWaybillRequest;
13-
import cn.binarywang.wx.miniapp.bean.delivery.FollowWaybillResponse;
14-
import cn.binarywang.wx.miniapp.bean.delivery.GetOrderRequest;
15-
import cn.binarywang.wx.miniapp.bean.delivery.GetOrderResponse;
16-
import cn.binarywang.wx.miniapp.bean.delivery.MockUpdateOrderRequest;
17-
import cn.binarywang.wx.miniapp.bean.delivery.MockUpdateOrderResponse;
18-
import cn.binarywang.wx.miniapp.bean.delivery.QueryFollowTraceRequest;
19-
import cn.binarywang.wx.miniapp.bean.delivery.QueryFollowTraceResponse;
20-
import cn.binarywang.wx.miniapp.bean.delivery.QueryWaybillTraceRequest;
21-
import cn.binarywang.wx.miniapp.bean.delivery.QueryWaybillTraceResponse;
22-
import cn.binarywang.wx.miniapp.bean.delivery.TraceWaybillRequest;
23-
import cn.binarywang.wx.miniapp.bean.delivery.TraceWaybillResponse;
5+
import cn.binarywang.wx.miniapp.bean.delivery.*;
246
import cn.binarywang.wx.miniapp.bean.delivery.base.WxMaDeliveryBaseResponse;
257
import cn.binarywang.wx.miniapp.constant.WxMaApiUrlConstants;
268
import cn.binarywang.wx.miniapp.constant.WxMaApiUrlConstants.InstantDelivery;
27-
import cn.binarywang.wx.miniapp.constant.WxMaConstants;
289
import com.google.gson.JsonElement;
2910
import com.google.gson.JsonObject;
30-
import javassist.bytecode.ConstPool;
3111
import lombok.RequiredArgsConstructor;
3212
import me.chanjar.weixin.common.enums.WxType;
3313
import me.chanjar.weixin.common.error.WxError;
@@ -204,7 +184,7 @@ public FollowWaybillResponse followWaybill(
204184

205185
@Override
206186
public QueryFollowTraceResponse queryFollowTrace(
207-
QueryFollowTraceRequest request) throws WxErrorException {
187+
QueryFollowTraceRequest request) throws WxErrorException {
208188
String responseContent = this.wxMaService.post(InstantDelivery.QUERY_FOLLOW_TRACE_URL, request);
209189
QueryFollowTraceResponse response = QueryFollowTraceResponse.fromJson(responseContent);
210190
if (response.getErrcode() == -1) {

0 commit comments

Comments
 (0)