main
Last change
on this file was f484b14, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Added full functionality for creating order
|
-
Property mode
set to
100644
|
File size:
370 bytes
|
Line | |
---|
1 | package com.example.autopartz.repository;
|
---|
2 |
|
---|
3 | import com.example.autopartz.model.manytomany.RsForCm;
|
---|
4 | import com.example.autopartz.model.manytomany.RsForCmId;
|
---|
5 | import org.springframework.data.jpa.repository.JpaRepository;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | public interface RsForCmRepository extends JpaRepository<RsForCm, RsForCmId> {
|
---|
10 | List<RsForCm> findAllByCmid(Integer cmid);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.