wzy
2021-01-10 16da0ad1fda1dffa3019425a6887d38ed4217f44
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
29
30
31
32
33
34
package com.matrix.system.shopXcx.api.service;
 
import com.matrix.core.pojo.AjaxResult;
import com.matrix.system.shopXcx.bean.ShopDeliveryInfo;
 
 
/**
 * @description 物流查询
 * @author pengliang
 * @date 2019-06-04 16:10
 */
public interface WxShopLogisticsQueryService {
 
    /**
     * 根据发货信息,查询物流信息
     * @param shopDeliveryInfo
     * @return
     */
    public AjaxResult selectLogisticsInfo(ShopDeliveryInfo shopDeliveryInfo);
 
    /**
     * 根据订单Id查询发货信息
     * @param orderId
     * @return
     */
    public ShopDeliveryInfo selectByorderId(Integer orderId);
 
    /**
     * 根据订单Id查询最新一条物流信息
     * @param orderId
     * @return
     */
    public String selectDescribeByOrderId(Integer orderId);
}