MCPcopy Create free account
hub / github.com/LQF-dev/smart-hr / Resume

Class Resume

back/src/main/java/com/smarthr/entity/Resume.java:20–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18import java.util.List;
19
20@Data
21@Entity
22@Builder
23@NoArgsConstructor
24@AllArgsConstructor
25@Table(name = "resumes")
26public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected