import
This commit is contained in:
snoop 2017-06-22 19:54:04 +09:00
parent 7d4aa858ad
commit ae3babc84a

View File

@ -14,6 +14,6 @@ public interface NoAuthProbeDAO extends JpaRepository<NoAuthProbe, Long> {
// NoAuthProbeDeprecate findByTempKey(NoAuthProbeDeprecate noAuthAgent);
// List<NoAuthProbeDeprecate> findAllByNoAuth(NoAuthProbeDeprecate noAuthAgent);
@Query("SELECT n FROM NoAuthProbe n WHERE n.TEMP_PROBE_KEY = :tempProbeKey")
@Query("SELECT n FROM NoAuthProbe n WHERE n.tempProbeKey = :tempProbeKey")
NoAuthProbe findByTempKey(@Param("tempProbeKey")String tempProbeKey);
}