Skip to content

Commit

Permalink
Merge pull request #39 from catchroom/develop
Browse files Browse the repository at this point in the history
Fix : ์ตœ์ดˆ ์ฑ„ํŒ…๋ฐฉ ๋ฆฌ์ŠคํŠธ ์กฐํšŒ ์‹œ ์ตœ์‹ ํ™” ๋ฆฌ์ŠคํŠธ ์กฐํšŒ ๋กœ์ง ๋ฐ˜์˜
  • Loading branch information
HyemIin authored Jan 22, 2024
2 parents 4eb6ce6 + 2c9b68b commit 1947082
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.catchroom.chat.chatroom.dto;

import com.catchroom.chat.chatroom.type.DealState;
import com.catchroom.chat.message.dto.ChatMessageDto;
import com.catchroom.chat.message.type.UserIdentity;
import lombok.AllArgsConstructor;
Expand All @@ -20,6 +21,7 @@ public class ChatRoomListGetResponse {
private String accommodationUrl;
private String partnerNickName;
private ChatMessageDto lastChatmessageDto;
private DealState dealState;

public void updateChatMessageDto(ChatMessageDto chatMessageDto) {
this.lastChatmessageDto = chatMessageDto;
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/com/catchroom/chat/chatroom/type/DealState.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.catchroom.chat.chatroom.type;

public enum DealState {
UNSOLD,ONSALE,EXPIRED,DONEDEAL,UNABLESELL
}

0 comments on commit 1947082

Please sign in to comment.