admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.tejia.lijin.app.entity.trends;
 
import com.tejia.lijin.app.entity.Label;
 
import java.util.List;
 
public class SendCircleCommment {
    private String id;// 评论id
    private List<Label> tagList;
    private String tagDesc; // 标签说明
    private String tagUrl;// 跳转链接
    private String content; // 评论内容
    private String type;// 类型
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public List<Label> getTagList() {
        return tagList;
    }
 
    public void setTagList(List<Label> tagList) {
        this.tagList = tagList;
    }
 
    public String getTagDesc() {
        return tagDesc;
    }
 
    public void setTagDesc(String tagDesc) {
        this.tagDesc = tagDesc;
    }
 
    public String getTagUrl() {
        return tagUrl;
    }
 
    public void setTagUrl(String tagUrl) {
        this.tagUrl = tagUrl;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
 
}