fixed
enum -> meta P -> 3
This commit is contained in:
parent
e51988bf5b
commit
6eaab5de0d
|
@ -20,6 +20,6 @@ public interface NoAuthProbeDAO extends JpaRepository<NoAuthProbe, Long> {
|
|||
// @Query("SELECT n FROM NoAuthProbe n WHERE n.tempProbeKey = :tempProbeKey")
|
||||
NoAuthProbe findByTempProbeKey(String tempProbeKey);
|
||||
// @Query("select m from Member m WHERE m.email = :#{#m2.email}")
|
||||
@Query("SELECT n FROM NoAuthProbe n WHERE n.domain.id = :#{#domain.id} and n.status = 'P'")
|
||||
@Query("SELECT n FROM NoAuthProbe n WHERE n.domain.id = :#{#domain.id} and n.status.id = 3") // 3 = Process
|
||||
List<NoAuthProbe> findAllByDomain(@Param("domain") Domain domain);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user