Skip to content

Commit

Permalink
#21-타입변경 Integer -> int
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwooo committed Oct 20, 2022
1 parent 6de4a53 commit 299b7e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/flab/quing/waiting/QuingService.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public interface QuingService {

List<WaitingResponse> getList(long storeId);

Integer countForward(long waitingId);
int countForward(long waitingId);

void sendMessage(long waitingId, String message);

Expand Down
7 changes: 6 additions & 1 deletion src/main/java/flab/quing/waiting/dto/WaitingResponse.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package flab.quing.waiting.dto;

import flab.quing.waiting.WaitingQueueStatus;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Data;
Expand All @@ -16,6 +17,10 @@ public class WaitingResponse {

private String phoneNumber;

private Integer countForward;
private int countForward;

private int callCount;

private WaitingQueueStatus waitingQueueStatus;

}

0 comments on commit 299b7e9

Please sign in to comment.