package com.ruoyi.system.domain.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @ClassName AppArticlePageVo
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/7/13 11:35
|
* @Version 1.0
|
*/
|
@Data
|
public class AppArticlePageVo {
|
|
|
@ApiModelProperty(value = "文章id")
|
private Long articleId;
|
|
@ApiModelProperty(value = "文章标题")
|
private String articleTitle;
|
|
@ApiModelProperty(value = "文章简介")
|
private String articleIntroduce;
|
|
@ApiModelProperty(value = "文章封面")
|
private String articleCover;
|
}
|