Skip to content

Commit 950d0c2

Browse files
committed
[Fix] 공고 상세 조회 Swagger 설명 수정
1 parent b218646 commit 950d0c2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/leets7th/job_is_be/domain/job/controller/JobController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ public ResponseEntity<Page<JobSummaryResponse>> searchJobs(
5858
}
5959

6060
//공고 상세 조회
61-
@Operation(summary = "공고 상세 조회", description = "external_id(예: 348736)를 통해 특정 공고의 상세 정보를 조회합니다.")
61+
@Operation(summary = "공고 상세 조회", description = "공고 ID를 통해 특정 공고의 상세 정보를 조회합니다.")
6262
@GetMapping("/{jobId}")
6363
public ResponseEntity<JobDetailResponse> getJobDetail(
64-
@Parameter(description = "공고 external_id") @PathVariable Long jobId
64+
@Parameter(description = "공고 ID") @PathVariable Long jobId
6565
) {
6666
JobDetailResponse response = jobService.getJobDetail(jobId);
6767
return ResponseEntity.ok(response);

0 commit comments

Comments
 (0)