Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[etc] swagger 수정 #83

Merged
merged 1 commit into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package com.mjucow.eatda.domain.notice.service.command.dto

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

data class CreateNoticeCommand(
@Schema(name = "title", example = "공지사항 제목")
val title: String,
@Schema(name = "content", example = "공지사항 내용")
val content: String,
)
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package com.mjucow.eatda.domain.store.service.command.dto
import io.swagger.v3.oas.annotations.media.Schema

data class CreateCommand(
@Schema(description = "생성할 카테고리 이름", example = "validName")
@Schema(name = "name", description = "생성할 카테고리 이름", example = "validName")
val name: String,
)
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.mjucow.eatda.common.vo.Point
import io.swagger.v3.oas.annotations.media.Schema

data class StoreUpdateCommand(
@Schema(name = "Store Name", example = "명지대학교")
@Schema(name = "name", example = "명지대학교")
val name: String,
@Schema(name = "address", example = "서울특별시 서대문구 거북골로 34")
val address: String,
Expand Down