admin
2019-06-21 7f943e54f259c7ff69c7591dbd6803171126b01e
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
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 int getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
 
    public List<PDDOrder> getOrderList() {
        return orderList;
    }
 
    public void setOrderList(List<PDDOrder> orderList) {
        this.orderList = orderList;
    }
 
    public PDDOrderResult() {
    }
 
    public PDDOrderResult(int totalCount, List<PDDOrder> orderList) {
        this.totalCount = totalCount;
        this.orderList = orderList;
    }
 
}