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);
|
}
|