Skip to content

Commit

Permalink
chore: 멀티라인 문자열로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
krSeonghyeon committed Dec 12, 2024
1 parent d6c7f2a commit be254a3
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,18 @@
@JsonNaming(SnakeCaseStrategy.class)
public record AdminModifyBenefitShopsRequest(
@Schema(
description = "상점정보 리스트",
example = "[{\"shop_id\": 1, \"detail\": \"배달비 무료\"}, {\"shop_id\": 2, \"detail\": \"최소주문금액 0원\"}]",
description = "상점정보 리스트", example = """
[
{
"shop_id": 1,
"detail": "배달비 무료"
},
{
"shop_id": 2,
"detail": "최소주문금액 0원"
}
]
""",
requiredMode = REQUIRED
)
@NotNull(message = "상점정보 리스트는 필수입니다.")
Expand Down

0 comments on commit be254a3

Please sign in to comment.