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;
|
}
|
}
|