This commit is contained in:
2026-01-06 21:44:36 +09:00
parent ceec1ad7a9
commit 716cf63f73
98 changed files with 6997 additions and 538 deletions

View File

@@ -0,0 +1,10 @@
package research.loghunter.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import research.loghunter.entity.Pattern;
import java.util.List;
public interface PatternRepository extends JpaRepository<Pattern, Long> {
List<Pattern> findByActiveTrue();
List<Pattern> findByActiveTrueOrderBySeverityAscNameAsc();
}