-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Feat: 멤버와 해당 멤버와의 친구 상태를 조회하는 메서드 구현
<footer> - 관련: #428
- Loading branch information
Showing
4 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...va/com/namo/spring/db/mysql/domains/user/model/query/MemberWithFriendshipStatusQuery.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,10 @@ | ||
package com.namo.spring.db.mysql.domains.user.model.query; | ||
|
||
import com.namo.spring.db.mysql.domains.user.entity.Member; | ||
import com.namo.spring.db.mysql.domains.user.type.FriendshipStatus; | ||
|
||
public record MemberWithFriendshipStatusQuery( | ||
Member member, | ||
FriendshipStatus friendshipStatus | ||
) { | ||
} |
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
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
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