From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/dto/taobao/TaoBaoOrderResultDTO.java |  103 ++++++++++++++++++++++++++-------------------------
 1 files changed, 52 insertions(+), 51 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/taobao/TaoBaoOrderResultDTO.java b/fanli/src/main/java/com/yeshi/fanli/dto/taobao/TaoBaoOrderResultDTO.java
index 63fd85f..f4fa9f1 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/taobao/TaoBaoOrderResultDTO.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/taobao/TaoBaoOrderResultDTO.java
@@ -1,51 +1,52 @@
-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;
-	}
-}
+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;
+	}
+}

--
Gitblit v1.8.0