commit | author | age
|
88f419
|
1 |
package vip.xiaonuo.modular.blogarticlecomment.entity; |
I |
2 |
|
|
3 |
import com.fasterxml.jackson.annotation.JsonFormat; |
|
4 |
import lombok.Data; |
|
5 |
import lombok.experimental.Accessors; |
|
6 |
|
|
7 |
import java.util.Date; |
|
8 |
import java.util.List; |
|
9 |
|
|
10 |
@Data |
|
11 |
@Accessors(chain = true) |
|
12 |
public class BlogCommentVo { |
|
13 |
private Long id; |
|
14 |
|
|
15 |
private Long parentId; |
|
16 |
|
|
17 |
private Long replyId; |
|
18 |
|
|
19 |
private String visitorId; |
|
20 |
|
|
21 |
private String visitorNickName; |
|
22 |
|
|
23 |
private String visitorHomePage; |
|
24 |
|
|
25 |
private String commentContent; |
|
26 |
|
|
27 |
private String replyUserName; |
|
28 |
|
|
29 |
private String replyUserHomePage; |
|
30 |
|
42b7d0
|
31 |
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm") |
88f419
|
32 |
private Date createDate; |
I |
33 |
|
|
34 |
private List<BlogCommentVo> replyList; |
|
35 |
|
e343e5
|
36 |
private Integer isHasNext; |
I |
37 |
|
|
38 |
private Integer authStatus; |
|
39 |
|
88f419
|
40 |
} |