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;