package com.qxueyou.scc.portal.information.dto;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @author angy
|
* @created by 2021/3/1
|
*/
|
public class ArticleInfoDTO {
|
|
//文章id
|
private String id;
|
|
//文章标题
|
private String title;
|
|
//文章类型
|
private String type;
|
|
//创建时间
|
private String dateTime;
|
|
//缩略图
|
private String thumbnailUrl;
|
|
//文章内容
|
private String content;
|
|
|
//附件
|
private List<Map<String,String>> attachment;
|
|
//浏览数
|
private Integer browseCount;
|
|
private String subColumn;
|
|
private String numbers;
|
|
private String competition;
|
|
private String preliminaries;
|
|
private String finals;
|
|
private String videoUrl;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Integer getBrowseCount() {
|
return browseCount;
|
}
|
|
public void setBrowseCount(Integer browseCount) {
|
this.browseCount = browseCount;
|
}
|
|
public String getDateTime() {
|
return dateTime;
|
}
|
|
public void setDateTime(String dateTime) {
|
this.dateTime = dateTime;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public List<Map<String, String>> getAttachment() {
|
return attachment;
|
}
|
|
public void setAttachment(List<Map<String, String>> attachment) {
|
this.attachment = attachment;
|
}
|
|
public String getThumbnailUrl() {
|
return thumbnailUrl;
|
}
|
|
public void setThumbnailUrl(String thumbnailUrl) {
|
this.thumbnailUrl = thumbnailUrl;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
|
public String getSubColumn() {
|
return subColumn;
|
}
|
|
public void setSubColumn(String subColumn) {
|
this.subColumn = subColumn;
|
}
|
|
public String getNumbers() {
|
return numbers;
|
}
|
|
public void setNumbers(String numbers) {
|
this.numbers = numbers;
|
}
|
|
public String getCompetition() {
|
return competition;
|
}
|
|
public void setCompetition(String competition) {
|
this.competition = competition;
|
}
|
|
public String getPreliminaries() {
|
return preliminaries;
|
}
|
|
public void setPreliminaries(String preliminaries) {
|
this.preliminaries = preliminaries;
|
}
|
|
public String getFinals() {
|
return finals;
|
}
|
|
public void setFinals(String finals) {
|
this.finals = finals;
|
}
|
|
public String getVideoUrl() {
|
return videoUrl;
|
}
|
|
public void setVideoUrl(String videoUrl) {
|
this.videoUrl = videoUrl;
|
}
|
}
|