-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
9 changed files
with
141 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/java/com/example/letscareer/schedule/dto/CompanyReviewDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.example.letscareer.schedule.dto; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public record CompanyReviewDTO( | ||
String company, | ||
List<CompanyReviewDetailDTO> interviewReviews, // 면접 리뷰 | ||
List<CompanyReviewDetailDTO> midtermReviews // 중간 리뷰 | ||
) { | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/com/example/letscareer/schedule/dto/CompanyReviewDetailDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.example.letscareer.schedule.dto; | ||
|
||
import java.time.LocalDate; | ||
|
||
public record CompanyReviewDetailDTO( | ||
Long scheduleId, | ||
Long stageId, | ||
Long reviewId, | ||
String department, | ||
LocalDate deadline, | ||
boolean isReviewed | ||
) { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/com/example/letscareer/schedule/dto/response/CompanyReviewListResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.example.letscareer.schedule.dto.response; | ||
|
||
import com.example.letscareer.schedule.dto.CompanyReviewDTO; | ||
|
||
import java.util.List; | ||
|
||
public record CompanyReviewListResponse( | ||
Integer page, | ||
Integer size, | ||
List<CompanyReviewDTO> companies | ||
) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters