admin
2019-06-10 a611b251f7486cc0e14cdf5bb26265f18956c068
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
package com.yeshi.fanli.dto.pdd;
 
import java.util.List;
 
import com.yeshi.fanli.entity.pdd.PDDOrder;
 
public class PDDOrderResult {
    private int totalCount;// 总数量
    private List<PDDOrder> orderList;// 商品列表
 
    public PDDOrderResult() {
    }
 
    public PDDOrderResult(int totalCount, List<PDDOrder> orderList) {
        this.totalCount = totalCount;
        this.orderList = orderList;
    }
 
    public int getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
 
    public List<PDDOrder> getGoodsList() {
        return orderList;
    }
 
    public void setGoodsList(List<PDDOrder> orderList) {
        this.orderList = orderList;
    }
}