| 7 | |
| 8 | import javax.persistence.*; |
| 9 | @Entity |
| 10 | @Table(name = "FILE_DATA") |
| 11 | @Data |
| 12 | @AllArgsConstructor |
| 13 | @NoArgsConstructor |
| 14 | @Builder |
| 15 | public class FileData { |
| 16 | |
| 17 | @Id |
| 18 | @GeneratedValue(strategy = GenerationType.IDENTITY) |
| 19 | private Long id; |
| 20 | |
| 21 | private String name; |
| 22 | private String type; |
| 23 | private String filePath; |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected