peng
7 天以前 75f9783d5a70a5f037e3b34dc0e479069e63c0e9
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
package cn.lili.modules.page.entity.vos;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 文章VO
 *
 * @author Chopper
 * @since 2021-03-26 11:32
 */
@Data
public class ArticleVO {
 
    @ApiModelProperty(value = "文章ID")
    private String id;
 
    @ApiModelProperty(value = "文章标题")
    private String title;
 
    @ApiModelProperty(value = "分类名称")
    private String articleCategoryName;
 
    @ApiModelProperty(value = "文章排序")
    private Integer sort;
 
    @ApiModelProperty(value = "开启状态")
    private Boolean openStatus;
}