We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b218646 commit 950d0c2Copy full SHA for 950d0c2
1 file changed
src/main/java/com/leets7th/job_is_be/domain/job/controller/JobController.java
@@ -58,10 +58,10 @@ public ResponseEntity<Page<JobSummaryResponse>> searchJobs(
58
}
59
60
//공고 상세 조회
61
- @Operation(summary = "공고 상세 조회", description = "external_id(예: 348736)를 통해 특정 공고의 상세 정보를 조회합니다.")
+ @Operation(summary = "공고 상세 조회", description = "공고 ID를 통해 특정 공고의 상세 정보를 조회합니다.")
62
@GetMapping("/{jobId}")
63
public ResponseEntity<JobDetailResponse> getJobDetail(
64
- @Parameter(description = "공고 external_id") @PathVariable Long jobId
+ @Parameter(description = "공고 ID") @PathVariable Long jobId
65
) {
66
JobDetailResponse response = jobService.getJobDetail(jobId);
67
return ResponseEntity.ok(response);
0 commit comments