修改查询语句
This commit is contained in:
@@ -3,6 +3,7 @@ package cn.celess.blog.entity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author : xiaohai
|
||||
@@ -41,14 +42,19 @@ public class Article {
|
||||
|
||||
private Date updateDate = null;
|
||||
|
||||
@Deprecated
|
||||
private Long categoryId;
|
||||
|
||||
@Deprecated
|
||||
private String tagsId;
|
||||
|
||||
@Deprecated
|
||||
private Long authorId;
|
||||
|
||||
@Deprecated
|
||||
private Long preArticleId;
|
||||
|
||||
@Deprecated
|
||||
private Long nextArticleId;
|
||||
|
||||
private Long readingNumber;
|
||||
@@ -58,4 +64,13 @@ public class Article {
|
||||
*/
|
||||
private Boolean open;
|
||||
|
||||
private Category category;
|
||||
|
||||
private List<Tag> tags;
|
||||
|
||||
private Integer likeCount;
|
||||
|
||||
private Integer dislikeCount;
|
||||
|
||||
private User user;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user