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

Class PositionDTO

back/src/main/java/com/smarthr/dto/position/PositionDTO.java:17–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15import java.util.List;
16
17@Data
18@Builder
19@NoArgsConstructor
20@AllArgsConstructor
21public class PositionDTO {
22
23 private Long id;
24 private String title;
25 private String company;
26 private String salaryRange;
27 private String experience;
28 private String education;
29 private String location;
30 private String responsibilities;
31 private String requirements;
32 private List<String> skills;
33 private Long createdBy;
34 private LocalDateTime createdAt;
35 private LocalDateTime updatedAt;
36}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected