Skip to content

Instantly share code, notes, and snippets.

@gitbricho
Last active August 29, 2015 14:09
Show Gist options
  • Save gitbricho/0e5bb8de28afbb5cc93f to your computer and use it in GitHub Desktop.
Save gitbricho/0e5bb8de28afbb5cc93f to your computer and use it in GitHub Desktop.
healthcare : com.itrane.healthcare.repo.VodRepository.java
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