From 67188a9e7a75d2582e12540f503088bdbbc8ac2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=84=9C=EC=9D=80?= <61147083+BangSun98@users.noreply.github.com> Date: Thu, 19 Jun 2025 10:24:50 +0900 Subject: [PATCH] chg sns format --- .../java/com/won/smarketing/store/dto/StoreCreateRequest.java | 4 ++-- .../main/java/com/won/smarketing/store/dto/StoreResponse.java | 4 ++-- .../java/com/won/smarketing/store/dto/StoreUpdateRequest.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreCreateRequest.java b/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreCreateRequest.java index ebb72c6..0cdbbf0 100644 --- a/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreCreateRequest.java +++ b/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreCreateRequest.java @@ -46,12 +46,12 @@ public class StoreCreateRequest { @Schema(description = "좌석 수", example = "20") private Integer seatCount; - @Schema(description = "SNS 계정 정보", example = "인스타그램: @mystore") + @Schema(description = "SNS 계정 정보", example = "@mystore") @Size(max = 500, message = "SNS 계정 정보는 500자 이하여야 합니다") private String instaAccounts; @Size(max = 500, message = "SNS 계정 정보는 500자 이하여야 합니다") - @Schema(description = "블로그 계정 정보", example = "블로그: mystore") + @Schema(description = "블로그 계정 정보", example = "mystore") private String blogAccounts; @Schema(description = "매장 설명", example = "따뜻한 분위기의 동네 카페입니다.") diff --git a/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreResponse.java b/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreResponse.java index 9c0bce0..8bc2c95 100644 --- a/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreResponse.java +++ b/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreResponse.java @@ -47,10 +47,10 @@ public class StoreResponse { @Schema(description = "좌석 수", example = "20") private Integer seatCount; - @Schema(description = "블로그 계정 정보", example = "블로그: mystore") + @Schema(description = "블로그 계정 정보", example = "mystore") private String blogAccounts; - @Schema(description = "인스타 계정 정보", example = "인스타그램: @mystore") + @Schema(description = "인스타 계정 정보", example = "@mystore") private String instaAccounts; @Schema(description = "매장 설명", example = "따뜻한 분위기의 동네 카페입니다.") diff --git a/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreUpdateRequest.java b/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreUpdateRequest.java index 1d235b7..acb119d 100644 --- a/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreUpdateRequest.java +++ b/smarketing-java/store/src/main/java/com/won/smarketing/store/dto/StoreUpdateRequest.java @@ -43,11 +43,11 @@ public class StoreUpdateRequest { @Schema(description = "좌석 수", example = "20") private Integer seatCount; - @Schema(description = "인스타 계정 정보", example = "인스타그램: @mystore") + @Schema(description = "인스타 계정 정보", example = "@mystore") @Size(max = 500, message = "인스타 계정 정보는 500자 이하여야 합니다") private String instaAccounts; - @Schema(description = "블로그 계정 정보", example = "블로그: mystore") + @Schema(description = "블로그 계정 정보", example = "mystore") @Size(max = 500, message = "SNS 계정 정보는 500자 이하여야 합니다") private String blogAccounts;