调整文章接口

This commit is contained in:
TinyAnts
2022-09-02 09:54:54 +08:00
parent 15c0cc66b9
commit 5d3c3425ef
7 changed files with 10 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ public class Article implements Serializable {
private Integer cid; // 分类
private String title; // 标题
private String intro; // 简介
private String summary; // 摘要
private String image; // 封面
private String content; // 内容
private String author; // 作者
@@ -28,6 +29,6 @@ public class Article implements Serializable {
private Integer isDelete; // 是否删除: [0=否, 1=是]
private Long createTime; // 创建时间
private Long updateTime; // 更新时间
private Long deleteTime; // 删除时间
private Long deleteTime; // 删除时间
}