This commit is contained in:
TinyAnts 2022-08-22 18:57:30 +08:00
parent 09b19615df
commit 061f4f6f40
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ public class ArticleListVo implements Serializable {
private String category; // 分类
private String title; // 标题
private String image; // 图片
private String author; // 作者
private Integer visit; // 访问
private Integer sort; // 排序
private Integer isShow; // 是否显示: [0=, 1=]

View File

@ -21,6 +21,7 @@ public class Article implements Serializable {
private String intro; // 简介
private String image; // 封面
private String content; // 内容
private String author; // 作者
private Integer visit; // 浏览
private Integer sort; // 排序
private Integer isShow; // 是否显示: [0=, 1=]