最近的一些修改 #7

Merged
xiaohai2271 merged 37 commits from dev into master 2020-08-01 21:26:46 +08:00
5 changed files with 8 additions and 0 deletions
Showing only changes of commit f7c1726d51 - Show all commits

View File

@@ -82,4 +82,6 @@ public class ArticleModel {
* 文章的状态 true公开 false:不公开
*/
private Boolean open;
private boolean deleted;
}

View File

@@ -20,4 +20,5 @@ public class CategoryModel {
private String name;
private List<ArticleModel> articles;
private boolean deleted;
}

View File

@@ -21,4 +21,5 @@ public class TagModel {
private List<ArticleModel> articles;
private boolean deleted;
}

View File

@@ -37,4 +37,6 @@ public class UserModel {
private String role = "user";
private String token;
private int status;
}

View File

@@ -21,4 +21,6 @@ public class WebUpdateModel {
this.info = info;
this.time = time;
}
private boolean deleted;
}