Skip to content

Commit

Permalink
[FIX] swagger 설명 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
happyjamy committed Feb 26, 2024
1 parent c8474d2 commit aed6fae
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
package io.oeid.mogakgo.domain.matching.presentation.dto;

import io.oeid.mogakgo.domain.matching.domain.entity.enums.MatchingStatus;
import io.swagger.v3.oas.annotations.media.Schema;
import java.time.LocalDateTime;
import lombok.AllArgsConstructor;
import lombok.Getter;

@Schema(description = "매칭 이력")
@Getter
@AllArgsConstructor
public class MatchingHistoryRes {

@Schema(description = "매칭 ID")
private final Long matchingId;
@Schema(description = "매칭 상태")
private final MatchingStatus status;
@Schema(description = "상대방 프로필 이미지 URL")
private final String anotherUserAvatarUrl;
@Schema(description = "프로젝트 위치 상세")
private final String projectLocationDetail;
@Schema(description = "프로젝트 시작 시간")
private final LocalDateTime projectStartTime;
@Schema(description = "프로젝트 종료 시간")
private final LocalDateTime projectEndTime;

}

0 comments on commit aed6fae

Please sign in to comment.