|
|
@@ -1,11 +1,10 @@
|
|
|
package com.xingxi.business.Order.service.impl;
|
|
|
|
|
|
-import com.xingxi.common.core.text.Convert;
|
|
|
-import com.xingxi.common.utils.DateUtils;
|
|
|
import com.xingxi.business.Order.domain.OrderDelivery;
|
|
|
-import com.xingxi.business.Order.domain.OrderDeliveryVo;
|
|
|
import com.xingxi.business.Order.mapper.OrderDeliveryMapper;
|
|
|
import com.xingxi.business.Order.service.IOrderDeliveryService;
|
|
|
+import com.xingxi.common.core.text.Convert;
|
|
|
+import com.xingxi.common.utils.DateUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
@@ -45,28 +44,6 @@ public class OrderDeliveryServiceImpl implements IOrderDeliveryService {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 查询订单明细发货单
|
|
|
- *
|
|
|
- * @param orderDeliveryId 订单明细发货单主键
|
|
|
- * @return 订单明细发货单
|
|
|
- */
|
|
|
- @Override
|
|
|
- public OrderDeliveryVo selectOrderDeliveryVoByOrderDeliveryId(Long orderDeliveryId) {
|
|
|
- return orderDeliveryMapper.selectOrderDeliveryVoByOrderDeliveryId(orderDeliveryId);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 查询订单明细发货单列表
|
|
|
- *
|
|
|
- * @param orderDeliveryVo 订单明细发货单
|
|
|
- * @return 订单明细发货单
|
|
|
- */
|
|
|
- @Override
|
|
|
- public List<OrderDeliveryVo> selectOrderDeliveryVoList(OrderDeliveryVo orderDeliveryVo) {
|
|
|
- return orderDeliveryMapper.selectOrderDeliveryVoList(orderDeliveryVo);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 新增订单明细发货单
|
|
|
*
|
|
|
* @param orderDelivery 订单明细发货单
|