dev add vio
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-03-12 00:21:19 +07:00
parent 88bfe51297
commit ffa977f06e
7 changed files with 193 additions and 7 deletions
@@ -36,4 +36,10 @@ public interface ViolationRepository extends JpaRepository<Violation, Long> {
Optional<Violation> findById(Long id);
void deleteByFileEntity(FileEntity file);
List<Violation> findByFileEntityIn(List<FileEntity> files);
List<Violation> findByFileEntityInAndCreatedDateBetween(List<FileEntity> files,
LocalDateTime startDate,
LocalDateTime endDate);
}