-
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.
Merge pull request #143 from studio-recoding/dev
[🚀feat] 24차 배포
- Loading branch information
Showing
5 changed files
with
85 additions
and
13 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
40 changes: 40 additions & 0 deletions
40
src/main/java/Ness/Backend/domain/schedule/dto/request/PostMetaDataScheduleDto.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,40 @@ | ||
package Ness.Backend.domain.schedule.dto.request; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.time.ZonedDateTime; | ||
|
||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
public class PostMetaDataScheduleDto { | ||
@Schema(description = "스케쥴 텍스트 내용", example = "AI 공부") | ||
@JsonProperty("title") | ||
private String info; | ||
|
||
@Schema(description = "스케쥴 위치", example = "이화여대 ECC") | ||
private String location; | ||
|
||
@Schema(description = "스케쥴 사람", example = "영희") | ||
private String person; | ||
|
||
@Schema(description = "스케쥴 시작 시간", example = "2024-03-08T15:07:27.056103+09:00") | ||
@JsonProperty("start") | ||
private ZonedDateTime startTime; | ||
|
||
@Schema(description = "스케쥴 끝 시간", example = "2024-03-08T15:07:27.056103+09:00") | ||
@JsonProperty("end") | ||
private ZonedDateTime endTime; | ||
|
||
@Schema(description = "스케쥴 카테고리 DB 넘버", example = "0") | ||
private Long categoryNum; | ||
|
||
@Schema(description = "스케쥴 메타데이터", example = "검색 키워드") | ||
private String keyword; | ||
} |