-
Notifications
You must be signed in to change notification settings - Fork 2
[fix] 몽고디비에 UTC 시각으로 저장되지않는 문제를 해결한다 #922
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,13 @@ | ||
| package moadong.club.payload.request; | ||
|
|
||
| import java.time.Instant; | ||
| import java.time.LocalDateTime; | ||
| import java.util.List; | ||
| import moadong.club.entity.Faq; | ||
|
|
||
| public record ClubRecruitmentInfoUpdateRequest( | ||
| LocalDateTime recruitmentStart, | ||
| LocalDateTime recruitmentEnd, | ||
| Instant recruitmentStart, | ||
| Instant recruitmentEnd, | ||
|
Comment on lines
+9
to
+10
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: cat -n backend/src/main/java/moadong/club/payload/request/ClubRecruitmentInfoUpdateRequest.java | head -30Repository: Moadong/moadong Length of output: 551 🏁 Script executed: rg -nP --type=java 'ClubRecruitmentInfoUpdateRequest' -A 5 -B 5Repository: Moadong/moadong Length of output: 14068 🏁 Script executed: rg -nP --type=java 'class ClubRecruitmentInformation' -A 40 | head -60Repository: Moadong/moadong Length of output: 4038 🏁 Script executed: sed -n '1,60p' backend/src/main/java/moadong/club/entity/ClubRecruitmentInformation.javaRepository: Moadong/moadong Length of output: 1556 Remove the unused The DTO's Instant type parameters correctly align with the entity's Instant fields, and all controller, service, and entity code properly handles the type. However, line 4 imports 🤖 Prompt for AI Agents |
||
| String recruitmentTarget, | ||
| String description, | ||
| String externalApplicationUrl, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.