xiaoyong931011
2022-06-06 8436adbda66025f53ff901a75af41b4528a005b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.xcong.farmer.cms.modules.system.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
 
@Data
@ApiModel(value = "AdminSeeArticleInfoVo", description = "文章返回")
public class AdminSeeArticleInfoVo {
 
    private Long id;
 
    @ApiModelProperty(value = "标题")
    private String title;
 
    @ApiModelProperty(value = "标题")
    private String childTitle;
 
    @ApiModelProperty(value = "作者")
    private String author;
 
    @ApiModelProperty(value = "描述")
    private String remark;
 
    @ApiModelProperty(value = "所属栏目ID")
    private Long columnId;
 
    @ApiModelProperty(value = "访问量")
    private Integer visits;
 
    @ApiModelProperty(value = "主图")
    private String mainDiagram;
 
    @ApiModelProperty(value = "图集")
    private String atlas;
 
    @ApiModelProperty(value = "发布时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date releaseTime;
 
    @ApiModelProperty(value = "是否立即发布 0:否 1:是")
    private Integer releaseStatus;
 
    @ApiModelProperty(value = "文章详情")
    private String articleDetails;
}