admin
2021-10-09 367dfb4ba7f1f181314ea4bfe3cb7cf9ae036b02
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
package com.yeshi.fanli.dto.jd;
 
import com.yeshi.fanli.entity.jd.JDBackUpOrder;
import com.yeshi.fanli.entity.jd.JDOrder;
 
import java.util.List;
 
//京东订单备份
public class JDOrderForBackUpResult {
    private boolean hasMore;
    private List<JDBackUpOrder> orderList;
 
    public JDOrderForBackUpResult(boolean hasMore, List<JDBackUpOrder> orderList) {
        this.hasMore = hasMore;
        this.orderList = orderList;
    }
 
    public JDOrderForBackUpResult() {
    
    }
 
    public boolean isHasMore() {
        return hasMore;
    }
 
    public void setHasMore(boolean hasMore) {
        this.hasMore = hasMore;
    }
 
    public List<JDBackUpOrder> getOrderList() {
        return orderList;
    }
 
    public void setOrderList(List<JDBackUpOrder> orderList) {
        this.orderList = orderList;
    }
 
}