From 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期五, 26 四月 2024 18:02:17 +0800
Subject: [PATCH] 唯品会链接解析升级

---
 fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java |   69 +++++++++++++++++-----------------
 1 files changed, 35 insertions(+), 34 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java b/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java
index aafd9bd..dbee8cc 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/pdd/PDDOrderResult.java
@@ -1,34 +1,35 @@
-package com.yeshi.fanli.dto.pdd;
-
-import java.util.List;
-
-import com.yeshi.fanli.entity.pdd.PDDOrder;
-
-public class PDDOrderResult {
-	private int totalCount;// 鎬绘暟閲�
-	private List<PDDOrder> orderList;// 鍟嗗搧鍒楄〃
-
-	public PDDOrderResult() {
-	}
-
-	public PDDOrderResult(int totalCount, List<PDDOrder> orderList) {
-		this.totalCount = totalCount;
-		this.orderList = orderList;
-	}
-
-	public int getTotalCount() {
-		return totalCount;
-	}
-
-	public void setTotalCount(int totalCount) {
-		this.totalCount = totalCount;
-	}
-
-	public List<PDDOrder> getGoodsList() {
-		return orderList;
-	}
-
-	public void setGoodsList(List<PDDOrder> orderList) {
-		this.orderList = orderList;
-	}
-}
+package com.yeshi.fanli.dto.pdd;
+
+import java.util.List;
+
+import com.yeshi.fanli.entity.pdd.PDDOrder;
+
+public class PDDOrderResult {
+	private int totalCount;// 鎬绘暟閲�
+	private List<PDDOrder> orderList;// 鍟嗗搧鍒楄〃
+
+	public int getTotalCount() {
+		return totalCount;
+	}
+
+	public void setTotalCount(int totalCount) {
+		this.totalCount = totalCount;
+	}
+
+	public List<PDDOrder> getOrderList() {
+		return orderList;
+	}
+
+	public void setOrderList(List<PDDOrder> orderList) {
+		this.orderList = orderList;
+	}
+
+	public PDDOrderResult() {
+	}
+
+	public PDDOrderResult(int totalCount, List<PDDOrder> orderList) {
+		this.totalCount = totalCount;
+		this.orderList = orderList;
+	}
+
+}

--
Gitblit v1.8.0