Package org.openwms.wms.receiving.impl
Interface ReceivingOrderRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ReceivingOrder,Long>
,org.springframework.data.jpa.repository.JpaRepository<ReceivingOrder,Long>
,org.springframework.data.repository.PagingAndSortingRepository<ReceivingOrder,Long>
,org.springframework.data.repository.query.QueryByExampleExecutor<ReceivingOrder>
,org.springframework.data.repository.Repository<ReceivingOrder,Long>
public interface ReceivingOrderRepository extends org.springframework.data.jpa.repository.JpaRepository<ReceivingOrder,Long>
A ReceivingOrderRepository.- Author:
- Heiko Scherrer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<ReceivingOrder>
findByOrderId(String orderId)
Optional<ReceivingOrder>
findBypKey(String pKey)
-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-
-
-
Method Detail
-
findBypKey
Optional<ReceivingOrder> findBypKey(String pKey)
-
findByOrderId
Optional<ReceivingOrder> findByOrderId(String orderId)
-
-