admin
2019-08-01 a3ea58065f61d16f06a0883737eae320eef5c33a
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.fanli.entity.taobao.dataoke.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;
    }
 
}