-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: 세미나 시간 LocalDateTime으로 변경 * test: 테스트 수정
- Loading branch information
Showing
5 changed files
with
67 additions
and
69 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
5 changes: 3 additions & 2 deletions
5
src/main/kotlin/com/wafflestudio/csereal/core/seminar/dto/SeminarSearchDto.kt
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,16 +1,17 @@ | ||
package com.wafflestudio.csereal.core.seminar.dto | ||
|
||
import com.querydsl.core.annotations.QueryProjection | ||
import java.time.LocalDateTime | ||
|
||
data class SeminarSearchDto @QueryProjection constructor( | ||
val id: Long, | ||
val title: String, | ||
val description: String, | ||
val name: String, | ||
val affiliation: String, | ||
val startDate: String?, | ||
val startDate: LocalDateTime?, | ||
val location: String, | ||
val imageURL: String?, | ||
val isYearLast: Boolean, | ||
) { | ||
} | ||
} |
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