-
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
1 parent
a6c7efa
commit 3e09cb7
Showing
6 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
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
3 changes: 3 additions & 0 deletions
3
src/main/kotlin/com/hero/alignlab/domain/group/infrastructure/GroupTagQRepository.kt
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,9 +1,12 @@ | ||
package com.hero.alignlab.domain.group.infrastructure | ||
|
||
import com.hero.alignlab.domain.group.domain.GroupTag | ||
import com.hero.alignlab.domain.group.infrastructure.result.GroupTagQueryResult | ||
|
||
interface GroupTagQRepository { | ||
fun findByGroupId(groupId: Long): List<GroupTag> | ||
|
||
fun findByGroupIds(groupIds: List<Long>): List<GroupTagQueryResult> | ||
|
||
fun deleteGroupTagMapByGroupId(groupId: Long) | ||
} |
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
8 changes: 8 additions & 0 deletions
8
src/main/kotlin/com/hero/alignlab/domain/group/infrastructure/result/GroupTagQueryResult.kt
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,8 @@ | ||
package com.hero.alignlab.domain.group.infrastructure.result | ||
|
||
/** QueryDsl Projection Class(수정 주의) */ | ||
class GroupTagQueryResult( | ||
val tagId: Long, | ||
val groupId: Long, | ||
val tagName: String, | ||
) |
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