Skip to content

Commit

Permalink
[FIX] 지원서 이미지 url 컬럼 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 14, 2024
1 parent 474219d commit 32464b9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.startlion.startlionserver.dto.response.interview;


import com.fasterxml.jackson.annotation.JsonProperty;
import com.startlion.startlionserver.domain.entity.GraduateInterview;
import com.startlion.startlionserver.dto.response.interviewanswer.InterviewAnswerResponse;
import io.swagger.v3.oas.annotations.media.Schema;
Expand All @@ -27,7 +26,6 @@ public record InterviewDetailResponse(
String major,

@Schema(description = "인터뷰 대상자 image url")
@JsonProperty("imgUrl")
String imageUrl,
List<InterviewAnswerResponse> interviewAnswers
) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.startlion.startlionserver.dto.response.interview;


import com.fasterxml.jackson.annotation.JsonProperty;
import com.startlion.startlionserver.domain.entity.GraduateInterview;
import io.swagger.v3.oas.annotations.media.Schema;

Expand All @@ -18,7 +17,6 @@ public record InterviewResponse(
@Schema(description = "인터뷰 목록 페이지에서 사용하는 섬네일 텍스트") String oneLineContent,

@Schema(description = "인터뷰 대상자 imageUrl")
@JsonProperty("imgUrl")
String imageUrl
) {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.startlion.startlionserver.dto.response.part;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.startlion.startlionserver.domain.entity.CommonQuestion;
import com.startlion.startlionserver.domain.entity.Curriculum;
import com.startlion.startlionserver.domain.entity.Part;
Expand All @@ -22,7 +21,6 @@ public record PartResponse(
@Schema(description = "파트 타입", example = "기획")
String typeOfTalent,
@Schema(description = "파트 이미지 url", example = "https://startlion.s3.ap-northeast-2.amazonaws.com/part/plan.png")
@JsonProperty("imgUrl")
String imageUrl,
@Schema(description = "커리큘럼 내용", example = "기획 파트는 기획을 합니다.")
String curriculumContents,
Expand Down

0 comments on commit 32464b9

Please sign in to comment.