yj
2020-03-06 ca53b2a58a60695d56dd2d523aa3658b8482b6de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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.fanli.vo.msg.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;
    }
    
}