fixed
noauth probe
This commit is contained in:
parent
8fa1af06c5
commit
c7ee2bb74b
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user