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
36
package com.yeshi.fanli.dto.jd;
 
import java.util.List;
 
import com.yeshi.fanli.entity.jd.JDOrder;
 
public class JDOrderResult {
    private boolean hasMore;
    private List<JDOrder> orderList;
 
    public JDOrderResult(boolean hasMore, List<JDOrder> orderList) {
        this.hasMore = hasMore;
        this.orderList = orderList;
    }
    
    public JDOrderResult() {
    
    }
 
    public boolean isHasMore() {
        return hasMore;
    }
 
    public void setHasMore(boolean hasMore) {
        this.hasMore = hasMore;
    }
 
    public List<JDOrder> getOrderList() {
        return orderList;
    }
 
    public void setOrderList(List<JDOrder> orderList) {
        this.orderList = orderList;
    }
 
}