-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
24 additions
and
20 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/main/java/com/chat/liveon/auth/service/PersonService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.chat.liveon.auth.service; | ||
|
||
public class PersonService { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/chat/liveon/chat/controller/ChatMessageStatusController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.chat.liveon.chat.controller; | ||
|
||
public class ChatMessageStatusController { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/chat/liveon/chat/dto/NotificationMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.chat.liveon.chat.dto; | ||
|
||
public class NotificationMessage { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/chat/liveon/chat/dto/response/UnreadMessagesResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.chat.liveon.chat.dto.response; | ||
|
||
public class UnreadMessagesResponse { | ||
} |
20 changes: 0 additions & 20 deletions
20
src/main/java/com/chat/liveon/chat/entity/ChatMessageStatus.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,4 @@ | ||
package com.chat.liveon.chat.entity; | ||
|
||
import com.chat.liveon.auth.entity.Person; | ||
import jakarta.persistence.*; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Entity | ||
@NoArgsConstructor | ||
@Getter | ||
public class ChatMessageStatus { | ||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
private Long id; | ||
|
||
@ManyToOne | ||
@JoinColumn(name = "message_id", nullable = false) | ||
private ChatMessage message; | ||
|
||
@ManyToOne | ||
@JoinColumn(name = "person_id", nullable = false) | ||
private Person person; | ||
|
||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/chat/liveon/chat/repository/ChatMessageStatusRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.chat.liveon.chat.repository; | ||
|
||
public interface ChatMessageStatusRepository { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/com/chat/liveon/chat/service/ChatMessageStatusService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package com.chat.liveon.chat.service; | ||
|
||
public class ChatMessageStatusService { | ||
} |