yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
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
46
47
48
49
50
51
package com.yeshi.fanli.dto.taobao;
 
import java.util.List;
 
import com.yeshi.fanli.entity.taobao.TaoBaoOrder;
 
public class TaoBaoOrderResultDTO {
    private boolean hasNext;
    private boolean hasPre;
    private String positionIndex;
    private List<TaoBaoOrder> orderList;
 
    public TaoBaoOrderResultDTO(boolean hasNext, boolean hasPre, String positionIndex, List<TaoBaoOrder> orderList) {
        this.hasNext = hasNext;
        this.hasPre = hasPre;
        this.positionIndex = positionIndex;
        this.orderList = orderList;
    }
 
    public boolean isHasNext() {
        return hasNext;
    }
 
    public void setHasNext(boolean hasNext) {
        this.hasNext = hasNext;
    }
 
    public boolean isHasPre() {
        return hasPre;
    }
 
    public void setHasPre(boolean hasPre) {
        this.hasPre = hasPre;
    }
 
    public String getPositionIndex() {
        return positionIndex;
    }
 
    public void setPositionIndex(String positionIndex) {
        this.positionIndex = positionIndex;
    }
 
    public List<TaoBaoOrder> getOrderList() {
        return orderList;
    }
 
    public void setOrderList(List<TaoBaoOrder> orderList) {
        this.orderList = orderList;
    }
}