forked from kahluaband/Homepage_BE_SpringBoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kahluaband#49 from woogieon8on/admin-apply
kahluaband#17 Feat: add admin applicant get method
- Loading branch information
Showing
4 changed files
with
67 additions
and
7 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
34 changes: 34 additions & 0 deletions
34
src/main/java/kahlua/KahluaProject/dto/apply/response/ApplyAdminGetResponse.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,34 @@ | ||
package kahlua.KahluaProject.dto.apply.response; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import kahlua.KahluaProject.domain.apply.Gender; | ||
import kahlua.KahluaProject.domain.apply.Preference; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
@Builder | ||
public class ApplyAdminGetResponse { | ||
|
||
private Long id; | ||
private String name; | ||
private Gender gender; | ||
private String birth_date; | ||
|
||
private String phone_num; | ||
private String address; | ||
private String major; | ||
private Preference first_preference; | ||
private Preference second_preference; | ||
|
||
@Schema(description = "깔루아 지원 동기") | ||
private String motive; | ||
@Schema(description = "지원 세션에 대한 경력 및 지원 이유") | ||
private String experience_and_reason; | ||
@Schema(description = "이외에 다룰 줄 아는 악기") | ||
private String play_instrument; | ||
@Schema(description = "포부 및 각오") | ||
private String readiness; | ||
} |
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