-
Notifications
You must be signed in to change notification settings - Fork 1
[release] 진행상황 main 브랜치에 반영 #152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a58f8df
[style] 개행 수정
zyovn 94ad68e
[feat] 관리자 페이지 웨이블존 상세 조회 화면에서 이전, 다음 웨이블존으로 이동하는 버튼 생성
KiSeungMin 7210a3c
Merge branch 'develop' into feature/seungmin
KiSeungMin 4fecb99
[test] 웨이블존 상세 조회 페이지 이전, 다음 버튼 배포 테스트
KiSeungMin ef5546d
[feat] 공덕 지역 웨이블존 데이터 추가
KiSeungMin 866bec0
[feat] 공덕 지역 웨이블존 데이터를 배포 환경에 반영하도록 profile 수정
KiSeungMin 696f629
[chore] workflow 및 csv importer 프로필 원복
KiSeungMin 253f65a
[feat] 공덕 지역 웨이블존 데이터 추가
KiSeungMin 0a4629b
Merge remote-tracking branch 'origin/main' into feature/hyoin
hyoinYang d6801b1
[fix] kric api 응답 수정
hyoinYang 3bf982f
[fix] 휠체어 정보를 좌표 말고 string 형식으로 변환
hyoinYang cab23c1
[feat] 공덕 도보 관련 데이터 추가
zyovn f537438
[fix] 환승 횟수 변경, 환승 카운트 로직 수정
hyoinYang efb4106
[refactor] api 관련 로깅을 자세하게 변경
hyoinYang 8553ffa
[fix] kric api에 타임아웃 추가
hyoinYang 11774c5
[fix] moveInfo에 도보 이동 거리 반영, 환승 로직 변경
hyoinYang 6ee135d
Merge remote-tracking branch 'origin/develop' into feature/hyoin
hyoinYang 1ccdb70
Merge pull request #149 from Wayble-Project/feature/jeongbin
zyovn b7085b4
Merge remote-tracking branch 'origin/develop' into feature/hyoin
hyoinYang cfbf03f
Merge pull request #151 from Wayble-Project/feature/hyoin
hyoinYang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
7 changes: 7 additions & 0 deletions
7
src/main/java/com/wayble/server/admin/dto/wayblezone/AdminWaybleZoneNavigationDto.java
This file contains hidden or 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,7 @@ | ||
| package com.wayble.server.admin.dto.wayblezone; | ||
|
|
||
| public record AdminWaybleZoneNavigationDto( | ||
| Long previousId, | ||
| Long nextId | ||
| ) { | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
24 changes: 24 additions & 0 deletions
24
src/main/java/com/wayble/server/direction/entity/transportation/Wheelchair.java
This file contains hidden or 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,24 @@ | ||
| package com.wayble.server.direction.entity.transportation; | ||
|
|
||
| import jakarta.persistence.*; | ||
| import lombok.*; | ||
|
|
||
| @Entity | ||
| @Getter | ||
| @Builder | ||
| @AllArgsConstructor(access = AccessLevel.PROTECTED) | ||
| @NoArgsConstructor(access = AccessLevel.PROTECTED) | ||
| @Table(name = "wheelchair") | ||
| public class Wheelchair { | ||
| @Id | ||
| @GeneratedValue(strategy = GenerationType.IDENTITY) | ||
| private Long id; | ||
|
|
||
| @ManyToOne(fetch = FetchType.LAZY) | ||
| @JoinColumn(name = "route_id", nullable = false) | ||
| private Route route; | ||
|
|
||
| @Column(name = "wheelchair_location", nullable = false) | ||
| private String wheelchairLocation; // 1-4 등 | ||
|
|
||
| } |
7 changes: 0 additions & 7 deletions
7
src/main/java/com/wayble/server/direction/external/kric/dto/KricToiletRawBody.java
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
15 changes: 15 additions & 0 deletions
15
src/main/java/com/wayble/server/direction/repository/WheelchairInfoRepository.java
This file contains hidden or 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,15 @@ | ||
| package com.wayble.server.direction.repository; | ||
|
|
||
| import com.wayble.server.direction.entity.transportation.Wheelchair; | ||
| import org.springframework.data.jpa.repository.JpaRepository; | ||
| import org.springframework.data.jpa.repository.Query; | ||
| import org.springframework.data.repository.query.Param; | ||
|
|
||
| import java.util.List; | ||
| import java.util.Optional; | ||
|
|
||
| public interface WheelchairInfoRepository extends JpaRepository<Wheelchair, Long> { | ||
|
|
||
| @Query("SELECT w FROM Wheelchair w WHERE w.route.routeId = :routeId") | ||
| List<Wheelchair> findByRouteId(@Param("routeId") Long routeId); | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FETCH JOIN + 단건 조회에서 DISTINCT 누락 시 NonUniqueResultException 위험
LEFT JOIN FETCH f.lifts로 다대일 확대 후 단건 반환 시 중복 로우가 생길 수 있습니다.SELECT DISTINCT를 붙여 중복을 제거하지 않으면 JPA가 단건 결과를 집계하지 못해NonUniqueResultException이 발생할 수 있습니다.다음과 같이 DISTINCT를 추가해주세요.
📝 Committable suggestion
🤖 Prompt for AI Agents