-
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
5 changed files
with
81 additions
and
5 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/main/java/gwangjang/server/domain/Issue/application/dto/res/TopicAndIssueRes.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,19 @@ | ||
package gwangjang.server.domain.Issue.application.dto.res; | ||
|
||
import gwangjang.server.domain.Issue.domain.entity.Issue; | ||
import lombok.*; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Builder | ||
@Setter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class TopicAndIssueRes { | ||
private Long topicId; | ||
private String topicTitle; | ||
|
||
private List<TopicIssueRes> issueList; | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
src/main/java/gwangjang/server/domain/Issue/application/dto/res/TopicIssueRes.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,17 @@ | ||
package gwangjang.server.domain.Issue.application.dto.res; | ||
|
||
import lombok.*; | ||
|
||
@Getter | ||
@Builder | ||
@Setter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class TopicIssueRes { | ||
|
||
private Long id; | ||
private String issueTitle; | ||
|
||
private String imgUrl; | ||
|
||
} |
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