Skip to content

Commit

Permalink
feat: 불필요한 schema 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
krSeonghyeon committed Dec 12, 2024
1 parent 16ff6fe commit 5ca4290
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,6 @@

@JsonNaming(SnakeCaseStrategy.class)
public record AdminCreateBenefitShopsRequest(
@Schema(
description = "상점정보 리스트", example = """
[
{
"shop_id": 1,
"detail": "배달비 무료"
},
{
"shop_id": 2,
"detail": "최소주문금액 0원"
}
]
""",
requiredMode = REQUIRED
)
@NotNull(message = "상점정보 리스트는 필수입니다.")
@NotBlankElement(message = "상점정보 리스트는 빈 요소가 존재할 수 없습니다.")
List<InnerBenefitShopsRequest> shopDetails
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,6 @@

@JsonNaming(SnakeCaseStrategy.class)
public record AdminModifyBenefitShopsRequest(
@Schema(
description = "혜택문구 변경정보 리스트", example = """
[
{
"shopBenefitMapId": 1,
"detail": "배달비 무료"
},
{
"shopBenefitMapId": 2,
"detail": "최소주문금액 0원"
}
]
""",
requiredMode = REQUIRED
)
@NotNull(message = "혜택문구 변경정보 리스트는 필수입니다.")
@NotBlankElement(message = "혜택문구 변경정보 리스트는 빈 요소가 존재할 수 없습니다.")
List<InnerBenefitShopsRequest> modifyDetails
Expand Down

0 comments on commit 5ca4290

Please sign in to comment.