Skip to content

Commit

Permalink
docs: swagger 문서 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
lsm-del committed Mar 7, 2024
1 parent 20668ab commit 9c2e2e1
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
package com.backend.soullive_a.dto.response;

import io.swagger.v3.oas.annotations.media.Schema;

@Schema(description = "최근 조회한 모델 model 객체")
public record RecentModelResponse(
@Schema(name = "모델 id(기본키)")
Long modelId,
@Schema(name = "모델 이미지 url")
String imageUrl,
@Schema(name = "모델 이름")
String modelName,
@Schema(name = "ai 추천 점수")
Float aiRate
) {

Expand Down

0 comments on commit 9c2e2e1

Please sign in to comment.