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;
|
}
|
|
|
}
|