Skip to content
Closed
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
Binary file modified .gradle/8.4/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified .gradle/8.4/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/8.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/8.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/8.4/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/file-system.probe
Binary file not shown.
1 change: 1 addition & 0 deletions .idea/dataSources.local.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 7 additions & 17 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public static PodResponseDto.MinimumStatus buildMinimumStatusResponseDto(Pod pod
.podName(pod.getPodName())
.podType(pod.getPodType().name())
.podStatus(pod.getPodStatus().toString())
.inprogressStatus(pod.getInprogressStatus().toString())
.platform(pod.getPlatform().name())
.goalAmount(pod.getGoalAmount())
.currentAmount(pod.getCurrentAmount())
Expand All @@ -123,6 +124,7 @@ public static PodResponseDto.GroupBuyStaus buildGroupBuyStatusResponseDto(Pod po
.podName(pod.getPodName())
.podType(pod.getPodType().name())
.podStatus(pod.getPodStatus().toString())
.inprogressStatus(pod.getInprogressStatus().toString())
.itemUrl(pod.getItemUrl())
.goalAmount(pod.getGoalAmount())
.currentAmount(pod.getCurrentAmount())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public static class MinimumStatus implements PodResponse{
private String podName;
private String podType;
private String podStatus;
private String inprogressStatus;
private String platform;
private int goalAmount;
private int currentAmount;
Expand Down Expand Up @@ -127,10 +128,11 @@ public static class GroupBuyStaus implements PodResponse{
private Long podId;
private String podName;
private String podType;
private String podStatus;
private String inprogressStatus;
private String itemUrl;
private int goalAmount; //목표 금액 or 목표 인원
private int currentAmount; //현재 금액 or 현재 인원
private String podStatus;
}

@Builder
Expand Down