admin
2020-07-15 fe646416d8d46de7b896ddbf65a3ad0cd30b729b
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
39
40
41
42
43
44
45
package com.yeshi.fanli.dto.dataoke;
 
import java.util.List;
 
import com.yeshi.goods.facade.entity.taobao.DaTaoKeDetailV2;
 
public class DaTaoKeGoodsResult {
    private long totalCount;
    private String pageId;
    private List<DaTaoKeDetailV2> goodsList;
 
    public DaTaoKeGoodsResult() {
    }
 
    public DaTaoKeGoodsResult(long totalCount, String pageId, List<DaTaoKeDetailV2> goodsList) {
        this.totalCount = totalCount;
        this.pageId = pageId;
        this.goodsList = goodsList;
    }
 
    public long getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(long totalCount) {
        this.totalCount = totalCount;
    }
 
    public String getPageId() {
        return pageId;
    }
 
    public void setPageId(String pageId) {
        this.pageId = pageId;
    }
 
    public List<DaTaoKeDetailV2> getGoodsList() {
        return goodsList;
    }
 
    public void setGoodsList(List<DaTaoKeDetailV2> goodsList) {
        this.goodsList = goodsList;
    }
 
}