Skip to content

Commit eec1b56

Browse files
dohy-eonhodoon
andauthored
Release v1.0.3
* feat: 솜커톤 모집 API 생성 * fix: 면접 예약 API 면접 일정 조회시 status도 같이 반환 * fix: 면접 예약 API 예약자 명단 조회 API 추가 * fix: 면접 예약 API 예약되어있는 슬롯은 삭제하지 않는 기능 추가 * fix: 면접 예약자 조회 API 면접일, 면접시간, 면접을 예약한 날짜과 시간 추가 * feat: 솜커톤 참가자 모집 API 생성 * feat: 솜커톤 참가자 모집 API 요청 URL에 somkathon 추가 * fix: 솜커톤 참가자 모집 API comment 해결 * fix: 솜커톤 참가자 모집 API comment 해결 * refactor: 뉴스 리스트 조회 리팩토링 --------- Co-authored-by: DoHoon Yoon <[email protected]>
1 parent ca1344a commit eec1b56

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/main/java/dmu/dasom/api/domain/news/dto/NewsListResponseDto.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ public class NewsListResponseDto {
2222
@Schema(description = "뉴스 제목", example = "제목")
2323
private String title;
2424

25+
@Schema(description = "뉴스 내용", example = "내용")
26+
private String content;
27+
2528
@Schema(description = "작성일", example = "2025-02-14T12:00:00")
2629
private LocalDateTime createdAt;
2730

src/main/java/dmu/dasom/api/domain/news/entity/NewsEntity.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public NewsListResponseDto toListResponseDto(FileResponseDto file) {
5252
return NewsListResponseDto.builder()
5353
.id(this.id)
5454
.title(this.title)
55+
.content(this.content)
5556
.createdAt(getCreatedAt())
5657
.image(file)
5758
.build();

0 commit comments

Comments
 (0)