package com.yeshi.fanli.vo.dynamic;
|
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.dynamic.ArticleOfficial;
|
import com.yeshi.common.vo.ClientTextStyleVO;
|
|
public class ArticleVO extends ArticleOfficial{
|
|
@Expose
|
private List<ClientTextStyleVO> labels;// 标签
|
|
public List<ClientTextStyleVO> getLabels() {
|
return labels;
|
}
|
|
public void setLabels(List<ClientTextStyleVO> labels) {
|
this.labels = labels;
|
}
|
|
}
|