-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #507 from Kernel360/develop
main 병합 진행
- Loading branch information
Showing
137 changed files
with
4,159 additions
and
1,446 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
사용자들은 자신의 경험을 다양한 면에서 기록하고 공유할 수 있습니다. | ||
|
||
## 배포 주소 | ||
|
||
[이길 로그](https://yigil.co.kr) | ||
|
||
## 주요 기능 | ||
|
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
29 changes: 29 additions & 0 deletions
29
backend/support/domain/src/main/java/kr/co/yigil/travel/domain/dto/CourseListDto.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,29 @@ | ||
package kr.co.yigil.travel.domain.dto; | ||
|
||
import com.querydsl.core.annotations.QueryProjection; | ||
import java.time.LocalDateTime; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class CourseListDto { | ||
|
||
private final Long courseId; | ||
private final String title; | ||
private final Double rate; | ||
private final String mapStaticImageUrl; | ||
private final Integer spotCount; | ||
private final LocalDateTime createdDate; | ||
private final Boolean isPrivate; | ||
|
||
@QueryProjection | ||
public CourseListDto(Long courseId, String title, Double rate, String mapStaticImageUrl, | ||
Integer spotCount, LocalDateTime createdDate, Boolean isPrivate) { | ||
this.courseId = courseId; | ||
this.title = title; | ||
this.rate = rate; | ||
this.mapStaticImageUrl = mapStaticImageUrl; | ||
this.spotCount = spotCount; | ||
this.createdDate = createdDate; | ||
this.isPrivate = isPrivate; | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
backend/support/domain/src/main/java/kr/co/yigil/travel/domain/dto/SpotListDto.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,30 @@ | ||
package kr.co.yigil.travel.domain.dto; | ||
|
||
import com.querydsl.core.annotations.QueryProjection; | ||
import java.time.LocalDateTime; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class SpotListDto { | ||
|
||
private final Long spotId; | ||
private final Long placeId; | ||
private final String title; | ||
private final double rate; | ||
private final String imageUrl; | ||
private final LocalDateTime createdDate; | ||
private final Boolean isPrivate; | ||
|
||
@QueryProjection | ||
public SpotListDto(Long spotId, Long placeId, String title, double rate, String imageUrl, | ||
LocalDateTime createdDate, Boolean isPrivate) { | ||
this.spotId = spotId; | ||
this.placeId = placeId; | ||
this.title = title; | ||
this.rate = rate; | ||
this.imageUrl = imageUrl; | ||
this.createdDate = createdDate; | ||
this.isPrivate = isPrivate; | ||
} | ||
|
||
} |
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
37 changes: 0 additions & 37 deletions
37
...l-admin/src/main/generated/kr/co/yigil/member/interfaces/dto/mapper/MemberMapperImpl.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
14 changes: 14 additions & 0 deletions
14
...gil-admin/src/main/java/kr/co/yigil/notice/interfaces/controller/NoticeApiController.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
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
Oops, something went wrong.