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,20 @@
package research.loghunter.dto;
import lombok.*;
import java.time.LocalDateTime;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class PatternDto {
private Long id;
private String name;
private String regex;
private String severity;
private Integer contextLines;
private String description;
private Boolean active;
private LocalDateTime createdAt;
}