noauth probe
This commit is contained in:
snoop 2017-06-22 18:58:06 +09:00
parent 8fa1af06c5
commit c7ee2bb74b

View File

@ -2,6 +2,8 @@ package com.loafle.overflow.module.noauthprobe.dao;
import com.loafle.overflow.module.noauthprobe.model.NoAuthProbe; import com.loafle.overflow.module.noauthprobe.model.NoAuthProbe;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository; import org.springframework.stereotype.Repository;
/** /**
@ -11,4 +13,7 @@ import org.springframework.stereotype.Repository;
public interface NoAuthProbeDAO extends JpaRepository<NoAuthProbe, Long> { public interface NoAuthProbeDAO extends JpaRepository<NoAuthProbe, Long> {
// NoAuthProbeDeprecate findByTempKey(NoAuthProbeDeprecate noAuthAgent); // NoAuthProbeDeprecate findByTempKey(NoAuthProbeDeprecate noAuthAgent);
// List<NoAuthProbeDeprecate> findAllByNoAuth(NoAuthProbeDeprecate noAuthAgent); // List<NoAuthProbeDeprecate> findAllByNoAuth(NoAuthProbeDeprecate noAuthAgent);
@Query("SELECT n FROM NoAuthProbe n WHERE n.TEMP_PROBE_KEY = :tempProbeKey")
NoAuthProbe findByTempKey(@Param("tempProbeKey")String tempProbeKey);
} }