...
|
...
|
@@ -244,8 +244,7 @@ public class ExpressInfoServiceImpl implements IExpressInfoService { |
|
|
@Override
|
|
|
public ExpressInfoRespBo queryExpressDetailInfo(Integer uid,Long orderCode) {
|
|
|
LOGGER.info("queryExpressDetailInfo uid={}, orderCode = {}",uid, orderCode);
|
|
|
BuyerOrder buyerOrder = buyerOrderMapper.selectByOrderCode(orderCode);
|
|
|
|
|
|
BuyerOrder buyerOrder = buyerOrderMapper.selectOnlyByOrderCode(orderCode);
|
|
|
if (buyerOrder == null){
|
|
|
LOGGER.warn("getOrderInfo order not exist, orderCode is {}", orderCode);
|
|
|
throw new ServiceException(ServiceError.ORDER_NULL);
|
...
|
...
|
|