yujian
2019-06-20 bf5d1b405c759de3faa42af37b1f10f42823b105
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
package com.yeshi.fanli.dto.common;
 
import java.io.Serializable;
import java.util.List;
 
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
 
public class CommonContentResult implements Serializable {
    private static final long serialVersionUID = 1L;
    private List<TaoBaoGoodsBrief> goodsList;
    private long count;
 
    public List<TaoBaoGoodsBrief> getGoodsList() {
        return goodsList;
    }
 
    public void setGoodsList(List<TaoBaoGoodsBrief> goodsList) {
        this.goodsList = goodsList;
    }
 
    public long getCount() {
        return count;
    }
 
    public void setCount(long count) {
        this.count = count;
    }
 
    public CommonContentResult(List<TaoBaoGoodsBrief> goodsList, long count) {
        this.goodsList = goodsList;
        this.count = count;
    }
 
    public CommonContentResult() {
    }
}