Last active
August 29, 2015 14:09
-
-
Save gitbricho/0e5bb8de28afbb5cc93f to your computer and use it in GitHub Desktop.
healthcare : com.itrane.healthcare.repo.VodRepository.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface VodRepository extends JpaRepository<Vod, Long> { | |
@Query("select v from Vod v where v.sokuteiBi = ?1") | |
public List<Vod> findBySokuteiBi(String sokuteiBi); | |
@Query("select v from Vod v where v.sokuteiBi between ?1 and ?2 order by v.sokuteiBi") | |
public List<Vod> findBySokuteiBiBetween(String sokuteiBi1, String sokuteiBi2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment