admin
2020-05-22 110c73f31ecfd0dbd7299a0cfd39095d100cb923
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
package com.yeshi.fanli.dto.vipshop;
 
import java.util.List;
 
import com.yeshi.fanli.entity.vipshop.VipShopOrder;
 
/**
 * 唯品会订单结果
 * @author Administrator
 *
 */
public class VipShopQueryOrderResultDTO {
    private List<VipShopOrder> orderList;
    private Integer total;
 
    public VipShopQueryOrderResultDTO(List<VipShopOrder> orderList, Integer total) {
        super();
        this.orderList = orderList;
        this.total = total;
    }
 
    public List<VipShopOrder> getOrderList() {
        return orderList;
    }
 
    public void setOrderList(List<VipShopOrder> orderList) {
        this.orderList = orderList;
    }
 
    public Integer getTotal() {
        return total;
    }
 
    public void setTotal(Integer total) {
        this.total = total;
    }
}