-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolved merge conflict in ArticleRepository.java
- Loading branch information
Showing
39 changed files
with
403 additions
and
72 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-6.22 KB
build/tmp/compileJava/compileTransaction/stash-dir/ArticleDataLoader.class.uniqueId2
Binary file not shown.
Binary file removed
BIN
-854 Bytes
build/tmp/compileJava/compileTransaction/stash-dir/ArticleRepository.class.uniqueId5
Binary file not shown.
Binary file removed
BIN
-3.29 KB
...compileTransaction/stash-dir/ArticleServiceImpl$ArticleServiceImplBuilder.class.uniqueId1
Binary file not shown.
Binary file added
BIN
+3.77 KB
...compileTransaction/stash-dir/ArticleServiceImpl$ArticleServiceImplBuilder.class.uniqueId3
Binary file not shown.
Binary file added
BIN
+25.5 KB
build/tmp/compileJava/compileTransaction/stash-dir/ArticleServiceImpl.class.uniqueId2
Binary file not shown.
Binary file removed
BIN
-20.3 KB
build/tmp/compileJava/compileTransaction/stash-dir/ArticleServiceImpl.class.uniqueId4
Binary file not shown.
Binary file modified
BIN
+283 Bytes
(110%)
build/tmp/compileJava/compileTransaction/stash-dir/ScrapController.class.uniqueId0
Binary file not shown.
Binary file added
BIN
+1.5 KB
build/tmp/compileJava/compileTransaction/stash-dir/ScrapRepository.class.uniqueId1
Binary file not shown.
Binary file renamed
BIN
+9.4 KB
...on/stash-dir/ScrapService.class.uniqueId3 → ...on/stash-dir/ScrapService.class.uniqueId4
Binary file not shown.
Binary file not shown.
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
26 changes: 26 additions & 0 deletions
26
src/main/java/com/winner_cat/domain/article/dto/TodayErrorDto.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,26 @@ | ||
package com.winner_cat.domain.article.dto; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class TodayErrorDto { | ||
@Data | ||
@Builder | ||
public static class ErrorCount { | ||
private Long totalCount; | ||
@Builder.Default | ||
private List<ErrorDto> ranking = new ArrayList<>(); | ||
} | ||
|
||
@Data | ||
@Builder | ||
public static class ErrorDto { | ||
private String tagName; | ||
private Long count; | ||
} | ||
} | ||
|
||
|
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
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
11 changes: 11 additions & 0 deletions
11
src/main/java/com/winner_cat/domain/questionroom/dto/AdoptAnswerDto.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,11 @@ | ||
package com.winner_cat.domain.questionroom.dto; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class AdoptAnswerDto { | ||
private Long questionRoomId; // 채택하려는 질문방의 아이디 | ||
private Long answerId; // 채택하려는 답변의 아이디 | ||
} |
Oops, something went wrong.