yujian
2020-06-08 b3da9f82b7740d39742fef1a81a56c22fe1c8b9c
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
package com.yeshi.fanli.dto.suning;
 
import java.util.List;
 
import com.yeshi.fanli.entity.suning.SuningOrderInfo;
 
public class SuningOrderQueryResultDTO {
    private int total;
    private List<SuningOrderInfo> orderList;
 
    public SuningOrderQueryResultDTO(int total, List<SuningOrderInfo> orderList) {
        super();
        this.total = total;
        this.orderList = orderList;
    }
 
    public int getTotal() {
        return total;
    }
 
    public void setTotal(int total) {
        this.total = total;
    }
 
    public List<SuningOrderInfo> getOrderList() {
        return orderList;
    }
 
    public void setOrderList(List<SuningOrderInfo> orderList) {
        this.orderList = orderList;
    }
 
}