| | |
| | | package zy.cloud.wms.manager.service.impl; |
| | | |
| | | import zy.cloud.wms.manager.entity.Order; |
| | | import zy.cloud.wms.manager.mapper.OrderDetlMapper; |
| | | import zy.cloud.wms.manager.entity.OrderDetl; |
| | | import zy.cloud.wms.manager.service.OrderDetlService; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | @Service("orderDetlService") |
| | |
| | | public List<OrderDetl> selectByOrderNo(String orderNo, Long hostId) { |
| | | return this.baseMapper.selectByOrderNo(orderNo, hostId); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrderDetl> selectBatchByOrderNo(List<Order> orders) { |
| | | return this.baseMapper.selectBatchByOrderNo(orders); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrderDetl> selectOutList(String matnr, ArrayList<String> strings) { |
| | | return this.baseMapper.selectOutList(matnr,strings); |
| | | } |
| | | } |