admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dto/taobao/TaoBaoOrderResultDTO.java
@@ -1,52 +1,52 @@
package com.yeshi.fanli.dto.taobao;
import java.io.Serializable;
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<Serializable> orderList;
   public TaoBaoOrderResultDTO(boolean hasNext, boolean hasPre, String positionIndex, List<Serializable> 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<Serializable> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<Serializable> orderList) {
      this.orderList = orderList;
   }
}
package com.yeshi.fanli.dto.taobao;
import java.io.Serializable;
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<Serializable> orderList;
   public TaoBaoOrderResultDTO(boolean hasNext, boolean hasPre, String positionIndex, List<Serializable> 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<Serializable> getOrderList() {
      return orderList;
   }
   public void setOrderList(List<Serializable> orderList) {
      this.orderList = orderList;
   }
}