25 lines
491 B
Java
25 lines
491 B
Java
package myblog.blog.article.model;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
/*
|
|
- 아티클 상세조회용 DTO
|
|
*/
|
|
@Getter @Setter
|
|
public class ArticleDtoForDetail {
|
|
|
|
private Long id;
|
|
private String title;
|
|
private String content;
|
|
private String toc;
|
|
private Long memberId;
|
|
private String thumbnailUrl;
|
|
private String category;
|
|
private List<String> tags;
|
|
private LocalDateTime createdDate;
|
|
}
|