-
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.
Merge branch 'main' into feature/new_schedule
- Loading branch information
Showing
33 changed files
with
1,339 additions
and
1,045 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ public ScheduleService scheduleService(){ | |
} | ||
|
||
|
||
} | ||
} |
29 changes: 0 additions & 29 deletions
29
src/main/java/com/haemil/backend/map/controller/MapController.java
This file was deleted.
Oops, something went wrong.
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
13 changes: 7 additions & 6 deletions
13
src/main/java/com/haemil/backend/prepare/dto/PrePareInfoDto.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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
package com.haemil.backend.prepare.dto; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class PrePareInfoDto { | ||
private String mask; // 미세먼지 농도 값에 따른 마스크 착용 -> 옵션 ) 자율, 권고, 필수 | ||
private String clothes; // 기온별 옷차림 -> 옵션 ) ex. "민소매, 반팔, 반바지, 원피스" | ||
private boolean umbrella; // 강수량에 따른 우선 여부 | ||
private String feel_like; // 체감 온도 | ||
private int percent; // 외출 적합도 퍼센트 | ||
private String result; // 외출 적합도 문장 -> 옵션 ) ex. "외출하기 좋은 날이네요"ㅇ | ||
private String pm10value; // 가장 최근꺼로 오늘꺼 미세먼지 수치 | ||
private String clothes; // 기온별 옷차림 -> 옵션 ) ex. "민소매, 반팔, 반바지, 원피스" | ||
private String feel_like; // 체감 온도 | ||
private String uv; // 자외선 | ||
private String result; // 외출 적합도 문장 -> 옵션 ) ex. "외출하기 좋은 날이네요" | ||
private int percent; // 외출 적합도 퍼센트 | ||
} |
Oops, something went wrong.