1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cn.iocoder.yudao.module.trade.framework.delivery.core.client;
|
| import cn.iocoder.yudao.module.trade.framework.delivery.core.client.dto.ExpressTrackQueryReqDTO;
| import cn.iocoder.yudao.module.trade.framework.delivery.core.client.dto.ExpressTrackRespDTO;
|
| import java.util.List;
|
| /**
| * 快递客户端接口
| *
| * @author jason
| */
| public interface ExpressClient {
|
| /**
| * 快递实时查询
| *
| * @param reqDTO 查询请求参数
| */
| // TODO @jason:返回字段可以参考 https://doc.youzanyun.com/detail/API/0/5 响应的 data
| List<ExpressTrackRespDTO> getExpressTrackList(ExpressTrackQueryReqDTO reqDTO);
|
| }
|
|