admin
2021-07-10 91ddd96c12ec25aaf6d0cb38d54288d863ab2b58
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
package com.yeshi.fanli.dto.common;
 
import java.io.Serializable;
import java.util.List;
 
import com.yeshi.fanli.entity.goods.CommonGoods;
import com.yeshi.goods.facade.entity.taobao.TaoBaoGoodsBrief;
 
public class CommonContentResult implements Serializable {
    private static final long serialVersionUID = 1L;
    private List<CommonGoods> goodsList;
    private long count;
 
 
    public List<CommonGoods> getGoodsList() {
        return goodsList;
    }
 
    public void setGoodsList(List<CommonGoods> goodsList) {
        this.goodsList = goodsList;
    }
 
    public long getCount() {
        return count;
    }
 
    public void setCount(long count) {
        this.count = count;
    }
 
    public CommonContentResult() {
    }
 
    public CommonContentResult(List<CommonGoods> goodsList, long count) {
        this.goodsList = goodsList;
        this.count = count;
    }
}