| 18 | import java.util.List; |
| 19 | |
| 20 | @Data |
| 21 | @Entity |
| 22 | @Builder |
| 23 | @NoArgsConstructor |
| 24 | @AllArgsConstructor |
| 25 | @Table(name = "resumes") |
| 26 | public class Resume { |
| 27 | |
| 28 | @Id |
| 29 | @GeneratedValue(strategy = GenerationType.IDENTITY) |
| 30 | private Long id; |
| 31 | |
| 32 | @Column(name = "user_id", nullable = false) |
| 33 | private Long userId; |
| 34 | |
| 35 | @Column(name = "file_name") |
| 36 | private String fileName; |
| 37 | |
| 38 | @Column(name = "file_path", length = 500) |
| 39 | private String filePath; |
| 40 | |
| 41 | @Column(columnDefinition = "TEXT") |
| 42 | private String content; |
| 43 | |
| 44 | @JdbcTypeCode(SqlTypes.ARRAY) |
| 45 | @Column(name = "extracted_skills", columnDefinition = "TEXT[]") |
| 46 | private List<String> extractedSkills; |
| 47 | |
| 48 | @Column(name = "created_at") |
| 49 | private LocalDateTime createdAt; |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected