-
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.
[refactor] #142 클래스 네이밍 및 변수명 수정, 기존에 존재하던 aggregator 사용할 수 있도록 리팩토링
- Loading branch information
Showing
5 changed files
with
41 additions
and
74 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
16 changes: 16 additions & 0 deletions
16
src/main/java/com/ggang/be/api/group/dto/CombinedGroupVos.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,16 @@ | ||
package com.ggang.be.api.group.dto; | ||
|
||
import com.ggang.be.domain.group.everyGroup.dto.EveryGroupVo; | ||
import com.ggang.be.domain.group.onceGroup.dto.OnceGroupVo; | ||
import java.util.List; | ||
|
||
public record CombinedGroupVos( | ||
List<EveryGroupVo> everyGroupVos, | ||
List<OnceGroupVo> onceGroupVos | ||
) { | ||
|
||
public static CombinedGroupVos of(List<EveryGroupVo> everyGroupResponses, List<OnceGroupVo> onceGroupResponses) { | ||
return new CombinedGroupVos(everyGroupResponses, onceGroupResponses); | ||
} | ||
|
||
} |
16 changes: 0 additions & 16 deletions
16
src/main/java/com/ggang/be/api/group/dto/GroupResponsesDto.java
This file was deleted.
Oops, something went wrong.
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
28 changes: 0 additions & 28 deletions
28
src/main/java/com/ggang/be/api/group/facade/PrepareGroupResponsesFacade.java
This file was deleted.
Oops, something went wrong.