bug fix
This commit is contained in:
@@ -2,22 +2,19 @@ package com.peanut.modules.book.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.peanut.modules.book.entity.ExpressOrder;
|
||||
import com.peanut.modules.book.entity.UserAddress;
|
||||
import com.peanut.modules.book.vo.ExpressQueryResponseVo;
|
||||
import com.peanut.modules.book.vo.ExpressOrderResponseVo;
|
||||
import com.peanut.modules.book.entity.ExpressQueryResponse;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Service
|
||||
public interface ExpressOrderService extends IService<ExpressOrder> {
|
||||
/**
|
||||
* 下单生成面单
|
||||
*
|
||||
* @param userAddress
|
||||
* @param expressOrder
|
||||
* @throws Exception
|
||||
*/
|
||||
Map<String, String> placeExpressOrder(UserAddress userAddress, ExpressOrder expressOrder);
|
||||
ExpressOrderResponseVo placeExpressOrder(ExpressOrder expressOrder);
|
||||
|
||||
ExpressQueryResponseVo queryExpressOrder(String ShipperCode, String LogisticCode);
|
||||
ExpressQueryResponse queryExpressOrder(String ShipperCode, String LogisticCode);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user