Skip to content

Commit

Permalink
hotfix: fix clothingSalesState enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunihs committed Aug 21, 2024
1 parent 95e32df commit 963646a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.swagger.v3.oas.annotations.media.Schema;

public record PostClothingSalesState(
@Schema(description = "옷장 정리 id") Long id,
@Schema(description = "옷장 정리 id") Long clothingSalesId,
@Schema(description = "상태") String clothingSalesState
) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public enum ClothingSalesStateType {
REQUEST_CANCELLED(3,"요청 취소", "요청 취소"),
BAG_DELIVERY(4, "배송 중", "리픽백 배송"),
BAG_DELIVERED(5, "배송 완료", "리픽백 배송 완료"),
BAG_COLLECT_REQUEST(6, "신청 완료", "리픽백 신청"),
BAG_COLLECT_REQUEST(6, "신청 완료", "리픽백 수거 신청"),
COLLECTING(7, "수거 중", "수거 중"),
COLLECTED(8, "수거 완료", "수거 완료(푸시)"),
SHOOTING(9, "수거 완료", "촬영 중"),
Expand Down

0 comments on commit 963646a

Please sign in to comment.