Skip to content

Commit

Permalink
hotfix: swagger documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mushroom1324 committed Apr 21, 2024
1 parent eb14179 commit e2cf49f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public SuccessResponse<BagCollectResponse> handleRepickBagCollectionRequest(@Mod
- 'μš”μ²­μ·¨μ†Œ'
넀가지 κ°’ 쀑 ν•˜λ‚˜λ₯Ό bagCollectStateType 에 μž…λ ₯ν•©λ‹ˆλ‹€.
μ˜ˆμ‹œ: bagCollectStateType: "배솑쀑"
μ˜ˆμ‹œ: bagCollectStateType: "μˆ˜κ±°μ™„λ£Œ"
""")
@PostMapping("bags/collection/state")
public SuccessResponse<BagCollectResponse> updateBagInitState(@RequestBody PostBagCollectState postBagCollectState) {
Expand Down Expand Up @@ -97,7 +97,7 @@ public SuccessResponse<BoxCollectResponse> handleBoxCollectionRequest(@ModelAttr
- 'μš”μ²­μ·¨μ†Œ'
넀가지 κ°’ 쀑 ν•˜λ‚˜λ₯Ό boxCollectStateType 에 μž…λ ₯ν•©λ‹ˆλ‹€.
μ˜ˆμ‹œ: boxCollectStateType: "배솑쀑"
μ˜ˆμ‹œ: boxCollectStateType: "νŒλ§€μ§„ν–‰"
""")
@PostMapping("box/collection/state")
public SuccessResponse<BoxCollectResponse> updateBoxCollectState(@RequestBody PostBoxCollectState postBoxCollectState) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

public record PostBagCollectState(
@Schema(description = "λ°± 수거 μš”μ²­ ID", example = "3") Long bagCollectId,
@Schema(description = "λ°± 수거 μš”μ²­ μƒνƒœ", example = "배솑쀑") String bagCollectStateType
@Schema(description = "λ°± 수거 μš”μ²­ μƒνƒœ", example = "μˆ˜κ±°μ™„λ£Œ") String bagCollectStateType
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

public record PostBoxCollectState(
@Schema(description = "λ°•μŠ€ 수거 μš”μ²­ ID", example = "3") Long boxCollectId,
@Schema(description = "λ°•μŠ€ 수거 μš”μ²­ μƒνƒœ", example = "배솑쀑") String boxCollectStateType
@Schema(description = "λ°•μŠ€ 수거 μš”μ²­ μƒνƒœ", example = "νŒλ§€μ§„ν–‰") String boxCollectStateType
) {
}

0 comments on commit e2cf49f

Please sign in to comment.