| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | import zy.cloud.wms.manager.entity.Order; |
| | | import zy.cloud.wms.manager.entity.OrderDetl; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | |
| | | |
| | | List<OrderDetl> selectByOrderNo(@Param("orderNo") String orderNo, @Param("hostId") Long hostId); |
| | | |
| | | List<OrderDetl> selectBatchByOrderNo(List<Order> orders); |
| | | |
| | | List<OrderDetl> selectOutList(@Param("matnr") String matnr, @Param("list") ArrayList<String> list); |
| | | } |