source: springapp/src/main/java/mk/profesori/springapp/Repository/PostVoteRepository.java@ c68150f

main
Last change on this file since c68150f was c68150f, checked in by unknown <mlviktor23@…>, 20 months ago

left: moderation, oAuth, messaging

  • Property mode set to 100644
File size: 330 bytes
Line 
1package mk.profesori.springapp.Repository;
2
3import mk.profesori.springapp.Model.PostVote;
4import org.springframework.data.repository.CrudRepository;
5import org.springframework.stereotype.Repository;
6
7@Repository
8public interface PostVoteRepository extends CrudRepository<PostVote,Long> {
9 PostVote findByPostVoteId(Long id);
10}
Note: See TracBrowser for help on using the repository browser.