| 12 | import lombok.NoArgsConstructor; |
| 13 | |
| 14 | @Data |
| 15 | @NoArgsConstructor |
| 16 | @AllArgsConstructor |
| 17 | public class MatchRequest { |
| 18 | |
| 19 | @NotNull(message = "简历 ID 不能为空") |
| 20 | private Long resumeId; |
| 21 | |
| 22 | @NotNull(message = "岗位 ID 不能为空") |
| 23 | private Long positionId; |
| 24 | } |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected