main
Last change
on this file was 1bd8d1e, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added views and functionalities for deliveryman, warehouseman and admin
|
-
Property mode
set to
100644
|
File size:
486 bytes
|
Line | |
---|
1 | package com.example.autopartz.repository;
|
---|
2 |
|
---|
3 | import com.example.autopartz.model.manytomany.PartIsInStockInWarehouse;
|
---|
4 | import com.example.autopartz.model.manytomany.PartIsInStockInWarehouseId;
|
---|
5 | import org.springframework.data.jpa.repository.JpaRepository;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | public interface PartIsInStockInWarehouseRepository extends JpaRepository<PartIsInStockInWarehouse, PartIsInStockInWarehouseId> {
|
---|
10 | List<PartIsInStockInWarehouse> findAllByWarehouseid(Integer warehouseid);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.