puzhibing
2024-01-30 03f1f3372a10a08f96f3308bfa099e86a55046d0
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
package com.ruoyi.system.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @ClassName MgtArticlePageVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/6/9 10:57
 * @Version 1.0
 */
@Data
public class MgtArticlePageVo {
 
    @ApiModelProperty(value = "文章id")
    private Long articleId;
 
    @ApiModelProperty(value = "文章分类")
    private String className;
 
    @ApiModelProperty(value = "文章排序")
    private Integer articleSort;
 
    @ApiModelProperty(value = "文章标题")
    private String articleTitle;
 
    @ApiModelProperty(value = "文章简介")
    private String articleIntroduce;
 
    @ApiModelProperty(value = "文章封面")
    private String articleCover;
 
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
}