-
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.
Merge pull request #146 from TEAM-YOAJUNG/fix/application-status-fix1
[FIX] Application Domain 지원 API Status 관련 Logic 수정
- Loading branch information
Showing
7 changed files
with
87 additions
and
5 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
application-service/src/main/java/club/gach_dong/dto/response/ClubResponseDTO.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,29 @@ | ||
package club.gach_dong.dto.response; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import java.time.LocalDateTime; | ||
import java.util.Map; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
public class ClubResponseDTO { | ||
@Getter | ||
@Builder | ||
@Schema(description = "내부 Service Mesh용 DTO (FrontEnd와는 관계가 없습니다.)") | ||
public static class RecruitmentResponseDto { | ||
private Long clubId; | ||
private Long recruitmentId; | ||
private Integer viewCount; | ||
private String title; | ||
private String content; | ||
private Integer recruitmentCount; | ||
private Long applicationFormId; | ||
private String recruitmentStatus; | ||
private LocalDateTime startDate; | ||
private LocalDateTime endDate; | ||
@JsonProperty("processData") | ||
private Map<String, String> processData; | ||
|
||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,6 @@ spring: | |
msa: | ||
url: | ||
club: ${CLUB_URL} | ||
clubPublic: ${CLUB_PUBLIC_URL} | ||
userDetail: ${USER_DETAIL_URL} | ||
|